ProxyCat/Dockerfile

15 lines
169 B
Docker
Raw Normal View History

2025-01-03 17:18:42 +08:00
FROM python:3.11
WORKDIR /app
COPY . .
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 1080
2025-01-07 15:38:23 +08:00
CMD ["python", "ProxyCat.py"]
2025-01-03 17:18:42 +08:00