vollmond/bot/Dockerfile

9 lines
151 B
Docker
Raw Normal View History

2024-08-28 19:45:31 +00:00
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
2024-11-01 11:01:47 +00:00
CMD [ "python", "./bot.py" ]