sipmen / Dockerfile
calvin-vin's picture
change db repository
e5d9d12
raw
history blame contribute delete
No virus
294 Bytes
FROM python:3.10.4
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN useradd -m -u 1000 user
USER user
COPY --chown=user . /code
CMD ["fastapi", "run", "app/main.py", "--host", "0.0.0.0", "--port", "7860"]