tg2/dockerfile

12 lines
203 B
Plaintext
Raw Normal View History

2023-05-13 23:13:33 +02:00
FROM python:3
WORKDIR /tg2
COPY main.py .
COPY config.py .
COPY requirements.txt .
RUN pip install --no-cache-dir pip && \
pip install --no-cache-dir -r requirements.txt
CMD ["python", "main.py"]