Omarelrayes commited on
Commit
c108d94
·
verified ·
1 Parent(s): b87635f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -2,6 +2,9 @@ FROM python:3.10
2
 
3
  WORKDIR /app
4
 
 
 
 
5
  # install dependencies
6
  COPY requirements.txt .
7
  RUN pip install --no-cache-dir -r requirements.txt
 
2
 
3
  WORKDIR /app
4
 
5
+ # 🔥 Set PYTHONPATH to include root directory (for sitecustomize.py)
6
+ ENV PYTHONPATH=/app:${PYTHONPATH}
7
+
8
  # install dependencies
9
  COPY requirements.txt .
10
  RUN pip install --no-cache-dir -r requirements.txt