fix(docker): add ca-certificates to docker
build / Go-Build (push) Successful in 1m25s
docker / docker (push) Successful in 4m9s

This commit is contained in:
2026-06-24 14:48:11 +02:00
parent 1b946789a4
commit cc3996b384
+1
View File
@@ -19,6 +19,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -v -o outfit-voting-abi26 ./cmd/
FROM debian:bookworm-slim
WORKDIR /root/
EXPOSE 4000
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
COPY --from=builder /app/outfit-voting-abi26 /usr/local/bin/outfit-voting-abi26
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh