woodburn-bot/Dockerfile

7 lines
155 B
Docker
Raw Normal View History

2023-08-11 15:55:44 +10:00
FROM python:3.10-bullseye
COPY requirements.txt /app/
WORKDIR /app
RUN pip install -r requirements.txt
COPY . .
2023-10-01 22:38:31 +11:00
VOLUME [ "/mnt" ]
2023-08-11 15:55:44 +10:00
CMD ["python3", "bot.py"]