diff --git a/dockerfile b/dockerfile index 8428ddc..3253038 100644 --- a/dockerfile +++ b/dockerfile @@ -7,10 +7,10 @@ WORKDIR /app # Copy the project files from the current directory on host to /app in the container COPY . /app -# Update package repository and install OpenSSL and other necessary libraries +# Update package repository and install OpenSSL and necessary libraries RUN apk update && \ apk upgrade && \ - apk add --no-cache openssl libssl1.1 libcrypto3 build-base + apk add --no-cache openssl libssl3 build-base # Install dependencies if applicable RUN pip install --no-cache-dir -r requirements.txt || true