Pro.Code / dockerfile
DSDUDEd's picture
Update dockerfile
8efe901 verified
raw
history blame
294 Bytes
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"]