tg2/dockerfile

15 lines
208 B
Plaintext
Raw Normal View History

2023-05-13 23:13:33 +02:00
FROM python:3
2023-05-19 22:01:51 +02:00
VOLUME /data
2023-05-13 23:13:33 +02:00
WORKDIR /tg2
COPY requirements.txt .
RUN pip install --no-cache-dir pip && \
pip install --no-cache-dir -r requirements.txt
2023-05-19 21:36:12 +02:00
COPY main.py .
2024-01-22 16:40:02 +01:00
CMD ["python", "-u", "main.py"]