omoral02's picture
Upload folder using huggingface_hub
ea0a275 verified
raw
history blame contribute delete
237 Bytes
# Base image
FROM python:3.9-slim
# Set working directory
WORKDIR /app
# Copy files
COPY . .
# Install dependencies
RUN pip install -r requirements.txt
# Expose port used by Flask
EXPOSE 7860
# Run the app
CMD ["python", "app.py"]