Spaces:
Runtime error
Runtime error
David Vaillant
commited on
Commit
·
31f160f
1
Parent(s):
504e172
fixed apt-get
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -5,7 +5,7 @@ WORKDIR /code
|
|
| 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 |
|
|
|
|
| 5 |
COPY ./requirements.txt /code/requirements.txt
|
| 6 |
|
| 7 |
RUN apt update
|
| 8 |
+
RUN apt-get -y 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 |
|