Skip to content

Commit 12da93e

Browse files
committed
- Remove outdated "--use-feature=2020-resolver" option from pip install commands
1 parent 1d007b2 commit 12da93e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ RUN apt-get update && apt-get install -y devscripts build-essential debhelper pk
4848

4949
# Install pip packages
5050
RUN pip install pip --upgrade
51-
RUN pip install --upgrade --no-cache-dir --use-feature=2020-resolver --src /usr/src -r requirements.txt \
51+
RUN pip install --upgrade --no-cache-dir --src /usr/src -r requirements.txt \
5252
&& pip install pygdal==$(gdal-config --version).* \
5353
&& pip install flower==0.9.4
5454

55-
RUN pip install --upgrade --use-feature=2020-resolver -e .
55+
RUN pip install --upgrade -e .
5656

5757
# Activate "memcached"
5858
RUN apt install memcached
@@ -62,8 +62,8 @@ RUN pip install pylibmc \
6262
# Install "geonode-contribs" apps
6363
RUN cd /usr/src; git clone https://github.com/GeoNode/geonode-contribs.git -b master
6464
# Install logstash and centralized dashboard dependencies
65-
RUN cd /usr/src/geonode-contribs/geonode-logstash; pip install --upgrade --use-feature=2020-resolver -e . \
66-
cd /usr/src/geonode-contribs/ldap; pip install --upgrade --use-feature=2020-resolver -e .
65+
RUN cd /usr/src/geonode-contribs/geonode-logstash; pip install --upgrade -e . \
66+
cd /usr/src/geonode-contribs/ldap; pip install --upgrade -e .
6767

6868
# Export ports
6969
EXPOSE 8000

0 commit comments

Comments
 (0)