application-bot/dockerfile

8 lines
144 B
Text
Raw Permalink Normal View History

2024-05-14 20:49:36 +00:00
FROM python:3.11
WORKDIR /applicationbot
COPY . ./
RUN pip install --timeout 10000 -r requirements.txt
CMD [ "python", "./applicationbot.py"]