Merge pull request #243 from max-b/fix-magneticow-dockerfile

Add libgcc and libstdc++ to final magneticow docker image
This commit is contained in:
Bora M. Alper 2020-04-16 08:35:31 +03:00 committed by GitHub
commit 57d2a89c3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,6 +19,8 @@ WORKDIR /
VOLUME /root/.local/share/magneticod VOLUME /root/.local/share/magneticod
VOLUME /root/.config/magneticow VOLUME /root/.config/magneticow
RUN apk add --no-cache libgcc libstdc++
COPY --from=build /go/bin/magneticow /magneticow COPY --from=build /go/bin/magneticow /magneticow
ENTRYPOINT ["/magneticow"] ENTRYPOINT ["/magneticow"]