faizee07's picture
Update Dockerfile
68fb9ad verified
raw
history blame contribute delete
210 Bytes
FROM python:3.9-slim
WORKDIR /code
COPY requirements.txt .
RUN apt-get update && apt-get install -y git && \
pip install --no-cache-dir -r requirements.txt
COPY app.py .
EXPOSE 7860
CMD ["python", "app.py"]