fix: Add git to dockerfile to allow it to install custom request-doh

This commit is contained in:
Nathan Woodburn 2025-02-28 21:59:18 +11:00
parent 3370d01a54
commit 6a68432a08
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 curl
RUN apk add --no-cache openssl bind-tools curl git
COPY requirements.txt /app
RUN --mount=type=cache,target=/root/.cache/pip \