mastodon-random-sentence-bot/Dockerfile

9 lines
108 B
Docker
Raw Normal View History

2023-12-09 00:25:33 +09:00
FROM python:bookworm
WORKDIR /app
2024-07-04 18:11:04 +09:00
COPY . .
2023-12-09 00:25:33 +09:00
RUN pip install -r requirements.txt
CMD ["python", "main.py"]