BotYam/Dockerfile
2023-01-31 00:29:04 +02:00

5 lines
No EOL
129 B
Docker

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