Commit bdab1c63 authored by Vincent Delbar's avatar Vincent Delbar
Browse files

FIX: make sure to install NUMPY 1.19.*

Showing with 1 addition and 1 deletion
+1 -1
......@@ -24,7 +24,7 @@ RUN if $GUI; then \
### Python3 links and pip packages
RUN ln -s /usr/bin/python3 /usr/local/bin/python && ln -s /usr/bin/pip3 /usr/local/bin/pip
# NumPy version is conflicting with system's gdal dep and may require venv
ARG NUMPY_SPEC="~=1.19"
ARG NUMPY_SPEC="==1.19.*"
RUN pip install --no-cache-dir -U pip wheel mock six future deprecated "numpy$NUMPY_SPEC" \
&& pip install --no-cache-dir --no-deps keras_applications keras_preprocessing
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment