diff options
| author | mo khan <mo@mokhan.ca> | 2025-04-14 16:10:01 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-04-14 16:10:01 -0600 |
| commit | a8c6e1a4aee4a616cd7c73a39e579d7c9b63d720 (patch) | |
| tree | ae14a445308299be1addc51b1c4377735a9a8f52 /Dockerfile | |
| parent | efc3c293f472a6993ca086fa335daf3719c6922a (diff) | |
feat: connect the sessions controller into the app
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"] |
