BotYam/Dockerfile
2023-01-31 00:32:14 +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"]