dev-mode-python / Dockerfile
sbrandeis's picture
sbrandeis HF staff
Create Dockerfile
a430a8d verified
raw
history blame
283 Bytes
FROM python:3.9
RUN useradd -m -u 1000 user
WORKDIR /app
COPY ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY . /app
RUN chown -R user:user /app
USER user
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]