mirror of
https://github.com/ustayready/fireprox
synced 2026-06-08 18:01:35 +00:00
8 lines
142 B
Docker
8 lines
142 B
Docker
FROM python:3.9-buster
|
|
|
|
WORKDIR /root/fireprox
|
|
COPY . .
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
ENTRYPOINT ["python", "/root/fireprox/fire.py"]
|