From 89cb05fce1160b6b0ef9e2f1582d317dc2dd3537 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Fri, 11 Oct 2024 16:19:32 +0200 Subject: [PATCH] Add openssl to Dockerfile This change adds the openssl CLI to the Dockerfile to ensure necessary cryptographic functionalities are available. It helps in maintaining secure communications and other operations that depend on openssl. --- pythonProject/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pythonProject/Dockerfile b/pythonProject/Dockerfile index 472965a..c708cee 100644 --- a/pythonProject/Dockerfile +++ b/pythonProject/Dockerfile @@ -4,6 +4,9 @@ FROM python:3.10-alpine # Set working directory WORKDIR /app +# add required clis +RUN apk add --no-cache openssl + # Copy requirements.txt to the Docker container COPY requirements.txt .