smraux commited on
Commit
1474b35
1 Parent(s): 2f0d938

Update Dockerfile and environment.yaml

Browse files

This commit updates the Dockerfile to install dependencies from requirements_versions.txt instead of requirements.txt. It also removes the pygit2 and numpy dependencies from the environment.yaml file.

Files changed (2) hide show
  1. Dockerfile +1 -1
  2. environment.yaml +0 -2
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 pip install --no-cache-dir -r requirements.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 requirements_versions.txt
22
 
23
  # Make port 80 available to the world outside this container
24
  EXPOSE 80
environment.yaml CHANGED
@@ -5,5 +5,3 @@ dependencies:
5
  - python=3.10
6
  - pip=23.0
7
  - packaging
8
- - pygit2
9
- - numpy
 
5
  - python=3.10
6
  - pip=23.0
7
  - packaging