This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
feurBot/Dockerfile
2022-08-06 01:32:35 +02:00

6 lines
107 B
Docker

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