MHDDoS/Dockerfile
2022-03-04 21:23:20 +02:00

10 lines
147 B
Docker

FROM python:3.8.12-buster
WORKDIR /app
COPY ./ ./
COPY files files
RUN pip3 install -r requirements.txt
ENTRYPOINT ["python3", "/app/start.py"]