pseudotheos commited on
Commit
eb762e0
1 Parent(s): 6e128e0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -34,6 +34,10 @@ RUN python3 -m pip install --user --no-cache-dir --upgrade pip && \
34
  # Add necessary directories to PATH
35
  ENV PATH="/home/appuser/.local/bin:${PATH}"
36
 
 
 
 
 
37
  # Copy the current directory contents into the container at /app
38
  COPY . /app/
39
 
 
34
  # Add necessary directories to PATH
35
  ENV PATH="/home/appuser/.local/bin:${PATH}"
36
 
37
+
38
+ # Explicitly add the scripts directory to PATH
39
+ ENV PATH="/home/appuser/.local/bin:/home/appuser/.local/scripts:${PATH}"
40
+
41
  # Copy the current directory contents into the container at /app
42
  COPY . /app/
43