From 1b88d11a5603cd2c5429e544e2fba2835b074a99 Mon Sep 17 00:00:00 2001 From: Victor Lacasse-Beaudoin Date: Wed, 22 Mar 2023 16:12:33 -0400 Subject: [PATCH] Retirer installation de `file` dans alpine --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bd1f3c4..3f6c9eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o app . FROM alpine:3.17.1 -RUN apk update && apk add file --no-cache && apk upgrade --no-cache +RUN apk update && apk upgrade --no-cache WORKDIR /app