Files
HeaderProxy/Dockerfile
Pierre HUBERT d8ea9db3c2
All checks were successful
continuous-integration/drone/push Build is passing
Add release files
2025-11-26 11:52:58 +01:00

11 lines
208 B
Docker

FROM debian:bookworm-slim
RUN apt-get update \
&& apt-get install -y libcurl4 \
&& rm -rf /var/lib/apt/lists/*
COPY header_proxy /usr/local/bin/header_proxy
ENTRYPOINT ["/usr/local/bin/header_proxy"]