From 43e6e3e8f5b9595dbdab66b74a66ca9b27450b28 Mon Sep 17 00:00:00 2001 From: TwinProduction Date: Fri, 29 Jan 2021 23:10:20 -0500 Subject: [PATCH] Fix Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bc6207ff..277a15ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -mod vendor -a -installsuffix cgo -o gatus FROM scratch COPY --from=builder /app/gatus . COPY --from=builder /app/config.yaml ./config/config.yaml -COPY --from=builder /app/web/static ./app/web/static/ +COPY --from=builder /app/web/static ./web/static COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt ENV PORT=8080 EXPOSE ${PORT}