reformape / Dockerfile
Persano's picture
Update Dockerfile
40b4bad verified
raw
history blame contribute delete
140 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]