We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f17ded2 commit b50f2daCopy full SHA for b50f2da
builds/Dockerfile
@@ -16,7 +16,9 @@ COPY . .
16
RUN CGO_ENABLED=0 GOOS=linux go build -trimpath -ldflags='-w -s -extldflags "-static"' -o timelock-worker .
17
18
# Final image: minimal scratch with only the binary
19
-FROM scratch
+FROM alpine:latest
20
+# Install CA certs
21
+RUN apk add --no-cache ca-certificates
22
COPY --from=builder /build/timelock-worker /timelock-worker
23
ENTRYPOINT ["/timelock-worker"]
24
CMD ["start"]
0 commit comments