mirror of
https://github.com/ethanrusz/youtube-url-corrector.git
synced 2024-11-21 09:37:47 -05:00
11 lines
145 B
Docker
11 lines
145 B
Docker
FROM python:3.11.6
|
|
|
|
WORKDIR /usr/src/units
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY bot.py .
|
|
|
|
CMD ["python", "bot.py"]
|