deepak191z commited on
Commit
1ce23eb
·
verified ·
1 Parent(s): 1e76a51

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -5
Dockerfile CHANGED
@@ -17,11 +17,11 @@ RUN echo "Cloning repository: ${GIT_REP}" && \
17
  WORKDIR /app/fastn8n
18
 
19
  # Set up virtual environment and dependencies
20
- RUN python -m venv shared_env && \
21
- shared_env/bin/pip install --upgrade pip && \
22
- shared_env/bin/pip install --no-cache-dir -r requirements.txt && \
23
- shared_env/bin/pip install --no-cache-dir numpy opencv-python-headless && \
24
- shared_env/bin/python -m pip list > /app/pip_list.txt
25
 
26
  # Ensure permissions
27
  RUN chown -R user:user /app
 
17
  WORKDIR /app/fastn8n
18
 
19
  # Set up virtual environment and dependencies
20
+ RUN python -m venv shared_venv && \
21
+ shared_venv/bin/pip install --upgrade pip && \
22
+ shared_venv/bin/pip install --no-cache-dir -r requirements.txt && \
23
+ shared_venv/bin/pip install --no-cache-dir numpy opencv-python-headless && \
24
+ shared_venv/bin/python -m pip list > /app/pip_list.txt
25
 
26
  # Ensure permissions
27
  RUN chown -R user:user /app