Update Dockerfile

This commit is contained in:
Florian Hoss 2022-10-20 17:36:49 +02:00
parent 55dce3186a
commit 8a6aba974d

View file

@ -17,7 +17,7 @@ FROM alpine AS logo
RUN apk add figlet
WORKDIR /logo
RUN figlet Launchpad > logo.txt
RUN figlet godash > logo.txt
FROM alpine AS final
WORKDIR /app
@ -28,8 +28,8 @@ COPY entrypoint.sh .
RUN chmod +x entrypoint.sh
COPY --from=go /backend/config/ ./config/
COPY --from=go /backend/templates .
COPY --from=go /backend/static .
COPY --from=go /backend/templates ./templates/
COPY --from=go /backend/static ./static/
COPY --from=go /backend/app .
ENTRYPOINT ["/app/entrypoint.sh"]