I am dumb
continuous-integration/drone/push Build is passing Details

This commit is contained in:
DutchEllie 2022-03-13 19:37:32 +01:00
parent d88b75988e
commit 3ade18b568
Signed by: DutchEllie
SSH Key Fingerprint: SHA256:dKq6ZSgN5E3Viqrw/+xAdf2VdR6hdRGNyrYqXXwfjTY
1 changed files with 2 additions and 2 deletions

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"]