dev-mode-python / Dockerfile
Tomtom84's picture
up20
797281f
raw
history blame
436 Bytes
FROM python:3.12
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
# ^ when run as `user`, pip installs executables there
WORKDIR /app
COPY --chown=user . /app
RUN pip install --no-cache-dir --upgrade -r requirements.txt
#CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", , "--ws", "auto", "--allow-websocket-origin", "*"]
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]