fix: Add openssl to dockerfile

This commit is contained in:
Nathan Woodburn 2025-02-25 11:50:22 +11:00
parent a56a75b30b
commit 0c08f11f6e
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

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