BotYam/Dockerfile
2023-01-29 20:51:57 +02:00

5 lines
No EOL
126 B
Docker

FROM python:latest
COPY . /etc/botyam
WORKDIR /etc/botyam
RUN pip install -r requirements.txt
CMD ["python3", "./src/main.py"]