Merge pull request #1497 from PeterDaveHello/DockerfileImprovement

Remove additional `-U` for `apk` in Dockerfile
This commit is contained in:
Mzack9999 2023-12-27 21:49:22 +01:00 committed by GitHub
commit 58a3c14080
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,8 +8,8 @@ RUN go mod download
RUN go build ./cmd/httpx
FROM alpine:3.18.2
RUN apk -U upgrade --no-cache \
RUN apk upgrade --no-cache \
&& apk add --no-cache bind-tools ca-certificates chromium
COPY --from=builder /app/httpx /usr/local/bin/
ENTRYPOINT ["httpx"]
ENTRYPOINT ["httpx"]