fix: add curl Dockerfile

This commit is contained in:
nomadics9 2024-12-20 19:34:51 +03:00
parent 3a820686ac
commit 00bda13fb2

View file

@ -6,7 +6,7 @@ COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o api-server . RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o api-server .
FROM alpine:latest FROM alpine:latest
RUN apk --no-cache add git ca-certificates jq RUN apk --no-cache add git ca-certificates jq curl
WORKDIR /app WORKDIR /app
COPY --from=builder /app/api-server . COPY --from=builder /app/api-server .