From 6a68432a08f32221297108392c6da894ed68bb33 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn <github@nathan.woodburn.au> Date: Fri, 28 Feb 2025 21:59:18 +1100 Subject: [PATCH] fix: Add git to dockerfile to allow it to install custom request-doh --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b55c149..dd96cd5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \