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:
parent
3716c3ce78
commit
89cb05fce1
@ -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 .
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user