Spaces:
Running
Running
Upload Dockerfile with huggingface_hub
Browse files- Dockerfile +41 -0
Dockerfile
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.9-slim
|
2 |
+
|
3 |
+
# Set working directory
|
4 |
+
WORKDIR /app
|
5 |
+
|
6 |
+
# Install system dependencies
|
7 |
+
RUN apt-get update && apt-get install -y \
|
8 |
+
build-essential \
|
9 |
+
curl \
|
10 |
+
software-properties-common \
|
11 |
+
git \
|
12 |
+
&& rm -rf /var/lib/apt/lists/*
|
13 |
+
|
14 |
+
# Copy requirements first for better caching
|
15 |
+
COPY requirements_new.txt requirements.txt
|
16 |
+
|
17 |
+
# Install Python dependencies
|
18 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
19 |
+
|
20 |
+
# Copy application code
|
21 |
+
COPY . .
|
22 |
+
|
23 |
+
# Create non-root user
|
24 |
+
RUN useradd -m -u 1000 user
|
25 |
+
USER user
|
26 |
+
|
27 |
+
# Set environment variables
|
28 |
+
ENV HOME=/home/user \
|
29 |
+
PATH=/home/user/.local/bin:$PATH \
|
30 |
+
PYTHONPATH=/app \
|
31 |
+
PYTHONUNBUFFERED=1
|
32 |
+
|
33 |
+
# Expose port
|
34 |
+
EXPOSE 7860
|
35 |
+
|
36 |
+
# Health check
|
37 |
+
HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 \
|
38 |
+
CMD curl -f http://localhost:7860/health || exit 1
|
39 |
+
|
40 |
+
# Run the application
|
41 |
+
CMD ["python", "app.py"]
|