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:
Uwe Seimet 2023-11-15 07:36:07 +01:00 committed by GitHub
parent 98f9292690
commit 28abbb5034
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ class PiscsiResponse
{
public:
PiscsiResponse() = default;
PiscsiResponse() { }
~PiscsiResponse() = default;
bool GetImageFile(PbImageFile&, const string&, const string&) const;

View File

@ -18,7 +18,7 @@ FROM debian:bullseye-slim AS runner
USER root
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
RUN chmod +x /usr/local/bin/*
RUN mkdir -p /home/pi/images