Skip to content

Instantly share code, notes, and snippets.

@initcron
Last active August 17, 2022 16:27
Show Gist options
  • Save initcron/66254a23f20e6ccafce87e1d2c508d8a to your computer and use it in GitHub Desktop.
Save initcron/66254a23f20e6ccafce87e1d2c508d8a to your computer and use it in GitHub Desktop.
Multistage for Facebooc
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