MetaEngine-Nearby / Dockerfile
github-actions[bot]
Deploy MetaEngine Nearby from 9767435c
29348b9
raw
history blame contribute delete
258 Bytes
FROM python:3.11-slim
RUN useradd -m -u 1000 user
WORKDIR /home/user/app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY --chown=user . .
USER user
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]