Last active
August 17, 2022 16:27
-
-
Save initcron/66254a23f20e6ccafce87e1d2c508d8a to your computer and use it in GitHub Desktop.
Multistage for Facebooc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine AS build | |
WORKDIR /opt/facebooc | |
COPY . . | |
RUN apk add --update alpine-sdk sqlite-dev sqlite && \ | |
make all | |
FROM alpine AS run | |
WORKDIR /opt/facebooc | |
COPY --from=build /opt/facebooc/bin . | |
COPY --from=build /opt/facebooc/static ./static | |
COPY --from=build /opt/facebooc/templates ./templates | |
RUN apk add --update --no-cache sqlite-libs | |
EXPOSE 16000 | |
CMD ./facebooc | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment