mirror of
https://github.com/honmashironeko/ProxyCat.git
synced 2025-11-05 10:51:06 +00:00
13 lines
196 B
Docker
13 lines
196 B
Docker
FROM python:3.8
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
RUN python -m venv /venv
|
|
|
|
RUN /venv/bin/pip install --no-cache-dir -r requirements.txt
|
|
|
|
EXPOSE 1080
|
|
|
|
ENTRYPOINT ["/venv/bin/python", "ProxyCat-V1.9.py"]
|