PY_LLM_NEW / Dockerfile
dharmendra
Initial Docker Space setup with direct build
5601c60
raw
history blame contribute delete
330 Bytes
FROM python:3.10-slim-buster
RUN useradd -m -u 1000 appuser
USER appuser
ENV PATH="/home/appuser/.local/bin:$PATH"
WORKDIR /app
COPY --chown=appuser ./requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY --chown=appuser . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]