Files
haider-bot/Dockerfiles/Dockerfile
2023-03-08 15:56:23 +00:00

12 lines
147 B
Docker

FROM python:3.10
WORKDIR /app
COPY requirements.txt .
RUN pip3 install -r requirements.txt
COPY code /app
ENTRYPOINT [ "python", "wingl.py" ]