MHDDoS/Dockerfile

10 lines
147 B
Docker
Raw Permalink Normal View History

2022-03-05 03:20:24 +08:00
FROM python:3.8.12-buster
WORKDIR /app
COPY ./ ./
COPY files files
RUN pip3 install -r requirements.txt
ENTRYPOINT ["python3", "/app/start.py"]