ifcore-platform / Dockerfile
IFCore Deploy
deploy(prod): 2026-02-21T01:10:43Z
51982d6
raw
history blame contribute delete
258 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN useradd -m -u 1000 user
USER user
EXPOSE 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860", "--workers", "1"]