pvanand commited on
Commit
ddf2e18
·
verified ·
1 Parent(s): 19aad44

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -24,6 +24,8 @@ RUN mkdir -p /app/ipython && chmod -R 777 /app/ipython
24
  # Create an output folder and give it all permissions
25
  RUN mkdir -p /app/output && chmod -R 2777 /app/output
26
 
 
 
27
  # Install any needed packages specified in requirements.txt
28
  RUN uv pip install --no-cache-dir -r requirements.txt
29
 
 
24
  # Create an output folder and give it all permissions
25
  RUN mkdir -p /app/output && chmod -R 2777 /app/output
26
 
27
+ RUN curl -LsSf https://astral.sh/uv/install.sh | sh
28
+
29
  # Install any needed packages specified in requirements.txt
30
  RUN uv pip install --no-cache-dir -r requirements.txt
31