Yassine Mhirsi commited on
Commit
e304280
·
1 Parent(s): 02d5860

Update Dockerfile to change working directory and PYTHONPATH to root

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -2,10 +2,10 @@
2
  FROM python:3.10-slim
3
 
4
  # Set working directory
5
- WORKDIR /app
6
 
7
  # Set PYTHONPATH to ensure imports work correctly
8
- ENV PYTHONPATH=/app
9
 
10
  # Install system dependencies
11
  RUN apt-get update && apt-get install -y \
 
2
  FROM python:3.10-slim
3
 
4
  # Set working directory
5
+ WORKDIR /
6
 
7
  # Set PYTHONPATH to ensure imports work correctly
8
+ ENV PYTHONPATH=/
9
 
10
  # Install system dependencies
11
  RUN apt-get update && apt-get install -y \