From 0d93d793f691835635b5726b0af68020399465a0 Mon Sep 17 00:00:00 2001 From: Ben Browning Date: Fri, 3 Apr 2026 21:04:50 +0000 Subject: [PATCH] Update paude-proxy to e990bd7 to fix unauthenticated git pulls Co-Authored-By: Claude Opus 4.6 --- containers/proxy/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/proxy/Dockerfile b/containers/proxy/Dockerfile index b28ed64..55696e1 100644 --- a/containers/proxy/Dockerfile +++ b/containers/proxy/Dockerfile @@ -1,7 +1,7 @@ # Build stage — compile paude-proxy from source FROM golang:1.23 AS builder WORKDIR /app -ARG PAUDE_PROXY_VERSION=2b868f8740185df6912a009030a9d60c9ccc1f83 +ARG PAUDE_PROXY_VERSION=e990bd7c854ee6b34d7db9ecb5c3646cd361f9bd RUN git init . && \ git fetch --depth 1 https://github.com/bbrowning/paude-proxy.git ${PAUDE_PROXY_VERSION} && \ git checkout FETCH_HEAD && \