1 / Dockerfile
droplyvictor89's picture
Upload 3 files
ad9af14 verified
Raw
History Blame Contribute Delete
265 Bytes
FROM python:3.11-slim
# Create non-root user (required for HuggingFace Spaces)
RUN useradd -m -u 1000 user
WORKDIR /app
# Copy files
COPY --chown=user:user server.py .
COPY --chown=user:user static/ ./static/
USER user
EXPOSE 7860
CMD ["python", "server.py"]