starvector-1b-im2svg / Dockerfile
hz2475's picture
init
d1fd4c0
raw
history blame
357 Bytes
# Read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
# you will also find guides on how best to write your Dockerfile
FROM python:3.11
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --chown=user . /app
RUN pip install -e .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]