Spaces:
Runtime error
Runtime error
David Vaillant
commited on
Commit
·
504e172
1
Parent(s):
4e06359
asji
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -4,7 +4,8 @@ WORKDIR /code
|
|
| 4 |
|
| 5 |
COPY ./requirements.txt /code/requirements.txt
|
| 6 |
|
| 7 |
-
RUN apt
|
|
|
|
| 8 |
RUN pip install --no-cache-dir --upgrade numpy
|
| 9 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 10 |
|
|
|
|
| 4 |
|
| 5 |
COPY ./requirements.txt /code/requirements.txt
|
| 6 |
|
| 7 |
+
RUN apt update
|
| 8 |
+
RUN apt install libgdal-dev
|
| 9 |
RUN pip install --no-cache-dir --upgrade numpy
|
| 10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 11 |
|