Spaces:
Paused
Paused
File size: 432 Bytes
3fa8769 b9fa4a7 3fa8769 b9fa4a7 3fa8769 b9fa4a7 3fa8769 b9fa4a7 3fa8769 b9fa4a7 3fa8769 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# Use official Python base image
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Install dependencies: curl + pip requirements
RUN apt-get update && \
apt-get install -y curl && \
rm -rf /var/lib/apt/lists/*
# Copy and install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the app
COPY . .
# Run the application
CMD ["python3", "app.py"]
|