mirror of
https://github.com/ethanrusz/youtube-url-corrector.git
synced 2024-11-22 09:57:45 -05:00
11 lines
144 B
Docker
11 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"]
|