PETER / Dockerfile
partybobo's picture
Update Dockerfile
a58e337 verified
Raw
History Blame Contribute Delete
342 Bytes
# Lightweight Python base image
FROM python:3.11-slim
# Set workdir
WORKDIR /app
# Copy server and static assets
COPY server.py ./server.py
COPY static ./static
# Expose HF PORT (default 7860)
EXPOSE 7860
# Environment options (optional)
ENV TOKEN_SET_SECRET=""
ENV HOST=0.0.0.0
ENV PORT=7860
# Run server
CMD ["python", "server.py"]