stablediffusionapi / Dockerfile
yusufgundogdu's picture
Update Dockerfile
163e93b verified
raw
history blame
199 Bytes
FROM python:3.9-slim
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy all files
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]