fix: Add openssl to dockerfile
All checks were successful
Build Docker / BuildImage (push) Successful in 56s

This commit is contained in:
2025-02-25 11:50:22 +11:00
parent a56a75b30b
commit 0c08f11f6e

View File

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