File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,11 @@ RUN pip install --upgrade pip\
13
13
# -------------------------------------------------------------------------------------
14
14
# Install NetBox
15
15
# -------------------------------------------------------------------------------------
16
+ # Remove redis==3.4.1 from the requirements.txt file as a workaround to #4910
17
+ # https://github.com/netbox-community/netbox/issues/4910, required for version 2.8.8 and earlier
16
18
RUN git clone --single-branch --branch ${netbox_ver} https://github.com/netbox-community/netbox.git /opt/netbox/ && \
17
19
cd /opt/netbox/ && \
20
+ sed -i '/^redis\=\= /d' /opt/netbox/requirements.txt && \
18
21
pip install -r /opt/netbox/requirements.txt
19
22
20
23
# Make the django-debug-toolbar always visible when DEBUG is enabled,
You can’t perform that action at this time.
0 commit comments