hypernoa-astrum / Dockerfile
ABNaidu's picture
Upload folder using huggingface_hub
73ba12d verified
raw
history blame contribute delete
357 Bytes
FROM python:3.11-slim
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --chown=user . /app
RUN pip install --no-cache-dir pydantic>=2.0 fastapi>=0.115.0 uvicorn>=0.24.0 openenv-core>=0.2.1
EXPOSE 7860
CMD ["python", "-m", "uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]