ramysaidagieb commited on
Commit
ade2bc2
·
verified ·
1 Parent(s): 4219f31

Upload dockerfile.dockerfile

Browse files
Files changed (1) hide show
  1. dockerfile.dockerfile +15 -0
dockerfile.dockerfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ # Install system dependencies
4
+ RUN apt-get update && apt-get install -y \
5
+ libcrypt1 \
6
+ libgl1 \
7
+ && rm -rf /var/lib/apt/lists/*
8
+
9
+ # Install Python packages
10
+ COPY requirements.txt .
11
+ RUN pip install --no-cache-dir -r requirements.txt
12
+
13
+ COPY . .
14
+
15
+ CMD ["python", "app.py"]