I am dumb

This commit is contained in:
DutchEllie 2022-03-13 19:37:32 +01:00
parent 85f773d39d
commit 6d3a99c63c

View File

@ -11,7 +11,7 @@ WORKDIR /root/
COPY --from=builder /project/web ./web/
COPY --from=builder /project/app ./
EXPOSE 8000
ENV TESTING = true
ENV TESTING true
CMD ["./app"]
FROM alpine:latest AS production
@ -20,5 +20,5 @@ WORKDIR /root/
COPY --from=builder /project/web ./web/
COPY --from=builder /project/app ./
EXPOSE 8000
ENV TESTING = false
ENV TESTING false
CMD ["./app"]