ldm3d-space / Dockerfile
r23's picture
Update Dockerfile
340c144
raw
history blame
140 Bytes
FROM python:3.8-slim
WORKDIR /code
RUN pip install diffusers transformers
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "80"]