From 5eda23ed5d2547ed63af7a763d36dff1191747f0 Mon Sep 17 00:00:00 2001 From: Victor Lacasse-Beaudoin Date: Mon, 16 Sep 2024 14:36:51 -0400 Subject: [PATCH] fix(Dockerfile): retirer prefix cgo --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ea6e9a3..6a9997a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ ADD models/ models/ ADD responses/ responses/ ADD web/ web/ -RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o bottin-agenda . +RUN CGO_ENABLED=0 go build -a -o bottin-agenda . # Alpine -- 2.45.2