mirror of
https://github.com/ethanrusz/youtube-url-corrector.git
synced 2025-04-11 21:20:35 -04:00
10 lines
144 B
Docker
10 lines
144 B
Docker
FROM python:3.11.6
|
|
|
|
WORKDIR /usr/src/units
|
|
|
|
COPY requiremtns.txt .
|
|
RUN pip install -r requirements.com
|
|
|
|
COPY bot.py .
|
|
|
|
CMD ["python", "bot.py"]
|