Spaces:
Running
Running
File size: 768 Bytes
fba0a90 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# Use the official Python image
FROM python:3.12-slim
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
# Create and set the working directory
WORKDIR /code
# Copy the requirements first to leverage Docker cache
# (I'll create a requirements.txt if it doesn't exist)
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application
COPY . .
# Move app files to root if necessary or adjust the command
# The app is in /app directory, but we want to run app.py
# Let's adjust the working directory for the command
WORKDIR /code/app
# Expose the port (HF Spaces uses 7860)
EXPOSE 7860
# Command to run the app
CMD ["flask", "run", "--host=0.0.0.0", "--port=7860"]
|