smraux commited on
Commit
ec5514a
·
1 Parent(s): 1474b35

Update Dockerfile to install dependencies from requirements_versions.txt

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -18,7 +18,7 @@ COPY . .
18
 
19
  # Install any additional dependencies specified in requirements.txt
20
  # Note: This is only necessary if you have additional pip packages not listed in environment.yaml
21
- RUN conda run -n fooocus pip3 install requirements_versions.txt
22
 
23
  # Make port 80 available to the world outside this container
24
  EXPOSE 80
 
18
 
19
  # Install any additional dependencies specified in requirements.txt
20
  # Note: This is only necessary if you have additional pip packages not listed in environment.yaml
21
+ RUN conda run -n fooocus pip3 install -r requirements_versions.txt
22
 
23
  # Make port 80 available to the world outside this container
24
  EXPOSE 80