Spaces:
Build error
Build error
File size: 394 Bytes
c1861ab 67859b3 c1861ab 67859b3 c1861ab 67859b3 963a4f6 67859b3 c1861ab 67859b3 c1861ab 67859b3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# Start with a supported Python version
FROM python:3.9-slim
# Set the working directory inside the container
WORKDIR /app
# Copy the requirements.txt file
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the code to the container
COPY . .
# Command to run the app (adjust the filename if needed)
CMD ["python", "app.py"] |