fix: Add curl into dockerfile

This commit is contained in:
Nathan Woodburn 2025-02-27 14:16:07 +11:00
parent 0e56b2609e
commit 7bde6e7bd2
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -3,7 +3,7 @@ FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder
WORKDIR /app
# Install openssl and delv
RUN apk add --no-cache openssl bind-tools
RUN apk add --no-cache openssl bind-tools curl
COPY requirements.txt /app
RUN --mount=type=cache,target=/root/.cache/pip \