This repository has been archived on 2022-08-14. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
feurBot/Dockerfile
2021-08-03 20:02:18 +02:00

6 lines
106 B
Docker

FROM python:3.9.5-slim
COPY . .
RUN pip install -r requirements.txt
CMD [ "python", "-u", "./main.py" ]