starvector-1b-im2svg / Dockerfile
hz2475's picture
start script
cc7ac8b
raw
history blame
313 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 ["bash start.sh"]