summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsoler_j <soler_j@etna-alternance.net>2025-04-29 16:25:42 +0200
committersoler_j <soler_j@etna-alternance.net>2025-04-29 16:25:42 +0200
commit1fc71f2f8e72af35579230c82265fb7267ba1a99 (patch)
treedb309c7788888ac0c95f8ab8616adf833c742947
parent3aa6555eec2bbbd55966b6e2a8ea5ed70ed79935 (diff)
Réinstaller les dépendances d'exécution dans le Dockerfile
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index bfc5949..ca85d3d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -48,11 +48,12 @@ FROM ubuntu:24.04
WORKDIR /app
# Install runtime deps
-RUN apt-get update && apt-get install -y \
+RUN apt-get update && apt-get install --reinstall -y \
libssl3 \
zlib1g \
libopus0 \
libsodium23 \
+ ca-certificates \
&& apt-get clean
# Copie des binaires
COPY --from=go-builder /api/app ./app