From 2aa7b29b23c96dad902ca440b4cbf089e6a23439 Mon Sep 17 00:00:00 2001 From: hasitotabla Date: Thu, 10 Oct 2024 16:52:17 +0200 Subject: [PATCH] fit: add .env and profiles.json to dockerfile bumta alb --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 19f7c98..f676ff1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,8 @@ FROM alpine:latest RUN apk --no-cache add ca-certificates WORKDIR /app/ COPY --from=builder /build/trackncore . +COPY --from=builder /build/.env . +COPY --from=builder /build/profiles.json . COPY --from=builder /build/index.html . EXPOSE 3000 CMD ["./trackncore"]