trio_http_proxy/Dockerfile
2024-07-27 20:06:49 +02:00

16 lines
291 B
Docker

FROM python:3.9
WORKDIR /app
RUN apt-get update && \
apt-get install -y git && \
apt-get clean
RUN git clone https://github.com/NohamR/trio_http_proxy.git
WORKDIR /app/trio_http_proxy
RUN pip install --no-cache-dir -r requirements-lock.txt
CMD ["python", "trio_http_proxy.py"]