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.
This commit is contained in:
Julien Fastré 2024-10-11 16:19:32 +02:00
parent 3716c3ce78
commit 89cb05fce1
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB

View File

@ -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 .