Spaces:
Sleeping
Sleeping
File size: 270 Bytes
d5009cf 86f768d d5009cf 9b11b37 86f768d d5009cf 86f768d 6bb5447 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | FROM python:3.11-slim
WORKDIR /app
# Copy your code and resources
COPY . .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose the HF default port
EXPOSE 7860
# Run the server on port 7860
CMD ["python", "server.py", "--port", "7860"] |