vollmond/bot/Dockerfile

9 lines
155 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 . .
CMD [ "python", "./testbot.py" ]