File size: 294 Bytes
7f41a21 8efe901 7f41a21 8efe901 7f41a21 8efe901 7f41a21 8efe901 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | FROM python:3.10-slim
WORKDIR /app
# Copy and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app.py into the container
COPY app.py .
# Expose the port for Hugging Face
EXPOSE 7860
# Tell Docker to run app.py
CMD ["python", "app.py"]
|