Commit
·
9a94fbc
1
Parent(s):
6350c15
Updated demo
Browse files- Dockerfile +3 -0
- requirements.txt +0 -1
Dockerfile
CHANGED
|
@@ -29,6 +29,9 @@ ENV HOME=/home/user \
|
|
| 29 |
|
| 30 |
RUN pip3 install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 31 |
|
|
|
|
|
|
|
|
|
|
| 32 |
# Set the working directory to the user's home directory
|
| 33 |
WORKDIR $HOME/app
|
| 34 |
|
|
|
|
| 29 |
|
| 30 |
RUN pip3 install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 31 |
|
| 32 |
+
# Hard fix for package
|
| 33 |
+
RUN pip3 install albumentations==1.4.10
|
| 34 |
+
|
| 35 |
# Set the working directory to the user's home directory
|
| 36 |
WORKDIR $HOME/app
|
| 37 |
|
requirements.txt
CHANGED
|
@@ -6,4 +6,3 @@ einops
|
|
| 6 |
huggingface_hub
|
| 7 |
gradio
|
| 8 |
git+https://github.com/IBM/terratorch.git
|
| 9 |
-
albumentations==1.4.10
|
|
|
|
| 6 |
huggingface_hub
|
| 7 |
gradio
|
| 8 |
git+https://github.com/IBM/terratorch.git
|
|
|