hadeethapi / Dockerfile
Alshargi's picture
Update Dockerfile
f2436e3 verified
raw
history blame contribute delete
170 Bytes
# Dockerfile (use Docker Space)
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]