MetaLearning / Dockerfile
Salil-IND's picture
Second Commit
78940a4 verified
raw
history blame contribute delete
390 Bytes
FROM python:3.10-slim
# Create a non-root user (important for HF Spaces)
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY --chown=user . .
EXPOSE 7860
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]