Update Dockerfile and environment.yaml
Browse filesThis 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.
- Dockerfile +1 -1
- 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
|
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
|
|
|
|