From 753435dc37b989d1a5639680df031ba5996dd4b5 Mon Sep 17 00:00:00 2001 From: TwinProduction Date: Wed, 4 Dec 2019 17:10:04 -0500 Subject: [PATCH] Minor improvement --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1e489525..900dfe79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,6 @@ COPY --from=builder /app/gatus . COPY --from=builder /app/config.yaml . COPY --from=builder /app/static static/ COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt -ENV PORT 8080 -EXPOSE 8080 +ENV PORT=8080 +EXPOSE ${PORT} ENTRYPOINT ["/gatus"]