formake / Dockerfile
Persano's picture
Update Dockerfile
ba39547 verified
raw
history blame contribute delete
176 Bytes
# Dockerfile
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]