mirror of
https://github.com/MatrixTM/MHDDoS.git
synced 2024-11-16 03:32:32 +08:00
10 lines
147 B
Docker
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"]
|