From c7224d41d0ef32f6a806e3ddfd3c6352c46f5abf Mon Sep 17 00:00:00 2001 From: Bubbles The Dev <152947339+KernFerm@users.noreply.github.com> Date: Sat, 26 Oct 2024 15:46:23 -0400 Subject: [PATCH] Update dockerfile Signed-off-by: Bubbles The Dev <152947339+KernFerm@users.noreply.github.com> --- dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dockerfile b/dockerfile index a0bd201..8428ddc 100644 --- a/dockerfile +++ b/dockerfile @@ -7,6 +7,11 @@ 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 +RUN apk update && \ + apk upgrade && \ + apk add --no-cache openssl libssl1.1 libcrypto3 build-base + # Install dependencies if applicable RUN pip install --no-cache-dir -r requirements.txt || true