garfbot/Dockerfile

9 lines
155 B
Docker
Raw Normal View History

2023-11-17 18:17:51 +00:00
FROM python:3.11
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt -vvv
CMD [ "python", "./garfbot.py" ]