From a8c6e1a4aee4a616cd7c73a39e579d7c9b63d720 Mon Sep 17 00:00:00 2001 From: mo khan Date: Mon, 14 Apr 2025 16:10:01 -0600 Subject: feat: connect the sessions controller into the app --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 7e26056..a6dc8e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,12 +4,12 @@ ENV CGO_ENABLED=0 WORKDIR /app COPY . ./ RUN make build && mv ./sparkled /bin/sparkled -CMD ["/bin/sparkled"] FROM scratch ENV BIND_ADDR=":http" EXPOSE 80 WORKDIR /var/www/ +COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ COPY --from=build /bin/sparkled /bin/sparkled COPY --from=build /app/public /var/www/public CMD ["/bin/sparkled"] -- cgit v1.2.3