mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 01:31:25 +00:00
Temporary fix for compiler issue (#1359)
* Fix bookworm compiler issue * fix to Docker for workaround --------- Co-authored-by: Benjamin Krein <superbenk@gmail.com>
This commit is contained in:
parent
98f9292690
commit
28abbb5034
@ -25,7 +25,7 @@ class PiscsiResponse
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
PiscsiResponse() = default;
|
PiscsiResponse() { }
|
||||||
~PiscsiResponse() = default;
|
~PiscsiResponse() = default;
|
||||||
|
|
||||||
bool GetImageFile(PbImageFile&, const string&, const string&) const;
|
bool GetImageFile(PbImageFile&, const string&, const string&) const;
|
||||||
|
@ -18,7 +18,7 @@ FROM debian:bullseye-slim AS runner
|
|||||||
USER root
|
USER root
|
||||||
WORKDIR /home/pi
|
WORKDIR /home/pi
|
||||||
|
|
||||||
COPY --from=build /home/pi/piscsi/cpp/bin/fullspec/* /usr/local/bin/
|
COPY --from=build /home/pi/piscsi/cpp/bin/* /usr/local/bin/
|
||||||
COPY docker/backend/piscsi_wrapper.sh /usr/local/bin/piscsi_wrapper.sh
|
COPY docker/backend/piscsi_wrapper.sh /usr/local/bin/piscsi_wrapper.sh
|
||||||
RUN chmod +x /usr/local/bin/*
|
RUN chmod +x /usr/local/bin/*
|
||||||
RUN mkdir -p /home/pi/images
|
RUN mkdir -p /home/pi/images
|
||||||
|
Loading…
Reference in New Issue
Block a user