Skip to content

Commit 5402f3a

Browse files
dgarrosmzbroch
authored andcommitted
Fix for Netbox issue 4910
(cherry picked from commit 8253ead)
1 parent b645bca commit 5402f3a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

development/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@ RUN pip install --upgrade pip\
1313
# -------------------------------------------------------------------------------------
1414
# Install NetBox
1515
# -------------------------------------------------------------------------------------
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
1618
RUN git clone --single-branch --branch ${netbox_ver} https://github.com/netbox-community/netbox.git /opt/netbox/ && \
1719
cd /opt/netbox/ && \
20+
sed -i '/^redis\=\=/d' /opt/netbox/requirements.txt && \
1821
pip install -r /opt/netbox/requirements.txt
1922

2023
# Make the django-debug-toolbar always visible when DEBUG is enabled,

0 commit comments

Comments
 (0)