fooocus-fastapi / Dockerfile
Sanket17's picture
added all files
5fbd25d
raw
history blame
327 Bytes
FROM pytorch/pytorch:2.1.0-cuda12.1-cudnn8-runtime
ENV TZ=Asia/Shanghai
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir opencv-python-headless -i https://pypi.org/simple
EXPOSE 8888
CMD ["python", "main.py", "--host", "0.0.0.0", "--port", "8888", "--skip-pip"]