youtube-url-corrector/Dockerfile

11 lines
145 B
Docker
Raw Permalink Normal View History

2023-11-09 14:49:10 -05:00
FROM python:3.11.6
WORKDIR /usr/src/units
2024-01-18 22:37:58 -05:00
COPY requirements.txt .
2024-01-18 22:39:48 -05:00
RUN pip install -r requirements.txt
2023-11-09 14:49:10 -05:00
COPY bot.py .
CMD ["python", "bot.py"]