flux2api / Dockerfile
tianlong12's picture
Create Dockerfile
6f484a9 verified
raw
history blame contribute delete
133 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]