line-webhook / Dockerfile
Therdpoom's picture
Upload 2 files
3e48aa0 verified
Raw
History Blame Contribute Delete
401 Bytes
FROM python:3.12-slim
# HuggingFace Spaces กำหนดให้รันด้วย non-root user UID 1000
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --chown=user requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY --chown=user . .
EXPOSE 8000
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]