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

7 lines
107 B
Docker
Raw Permalink Normal View History

2022-08-06 01:32:35 +02:00
FROM python:3.10.4-slim
2021-08-03 20:02:18 +02:00
COPY . .
RUN pip install -r requirements.txt
CMD [ "python", "-u", "./main.py" ]