PradeepSahu/RenewableEnergyPredictionModel
0
1# Use an official Python base image2FROM python:3.10-slim3 4# Set working directory5WORKDIR /app6 7# Copy all files into the container8COPY . /app9 10# Install dependencies11RUN pip install --no-cache-dir -r requirements.txt12 13# Expose the expected port for Hugging Face Spaces14EXPOSE 786015 16# Run the Flask app17CMD ["python", "app.py"]