Bot_tle / Dockerfile
HafedhQaid's picture
Upload 3 files
1a91a80 verified
raw
history blame
155 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
CMD ["python", "main.py"]