turdbot/Dockerfile

6 lines
141 B
Docker
Raw Normal View History

2024-03-12 13:14:01 -06:00
FROM python:3.12-slim
RUN mkdir -p /app
2024-03-13 12:56:53 -06:00
COPY py/. /app
2024-03-12 13:14:01 -06:00
WORKDIR /app
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "-u", "bot.py"]