Crunchyroll-Chk / Dockerfile
Inayatgaming's picture
Create Dockerfile
43f9f11 verified
Raw
History Blame Contribute Delete
325 Bytes
# Use an official Python runtime as a parent image
FROM python:3.12-slim
# Set working directory
WORKDIR /app
# Copy project files
COPY . .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose port for Hugging Face Spaces
EXPOSE 7860
# Command to run your Flask app
CMD ["python", "app.py"]