diff --git a/Dockerfile b/Dockerfile index 8bccc44..379154a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,9 @@ FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder WORKDIR /app +# Install openssl +RUN apk add --no-cache openssl + COPY requirements.txt /app RUN --mount=type=cache,target=/root/.cache/pip \ python3 -m pip install -r requirements.txt