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 d65678e commit 90726f8Copy full SHA for 90726f8
1 file changed
Dockerfile
@@ -3,7 +3,7 @@ FROM golang:1.21 AS build
3
WORKDIR /usr/src/app
4
COPY . .
5
# get ssl certs to copy into scratch image, as it won't have them by default.
6
-RUN apt update && apt-get install git ca-certificates && update-ca-certificates
+RUN apt update && apt-get install -y git ca-certificates && update-ca-certificates
7
RUN CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -v -o /event-service ./cmd/event-service
8
9
0 commit comments