Skip to content

Commit 9ec3f0f

Browse files
authored
Merge pull request #48 from fisuda/fix/django_channels
Fix error when building WireCloud 1.3 docker images (close #47)
2 parents 420b781 + 3c849ff commit 9ec3f0f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

1.2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ COPY ./docker-entrypoint.sh /
2121
COPY ./manage.py /usr/local/bin/
2222

2323
RUN adduser --system --group --shell /bin/bash wirecloud && \
24-
pip install --no-cache-dir channels asgi_ipc asgi_redis asgi_rabbitmq && \
24+
pip install --no-cache-dir "channels<2.4.0" asgi_ipc asgi_redis asgi_rabbitmq && \
2525
mkdir -p /opt/wirecloud_instance /var/www/static && \
2626
cd /opt && \
2727
wirecloud-admin startproject wirecloud_instance wirecloud_instance && \

1.3/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ COPY ./docker-entrypoint.sh /
2121
COPY ./manage.py /usr/local/bin/
2222

2323
RUN adduser --system --group --shell /bin/bash wirecloud && \
24-
pip install --no-cache-dir channels asgi_ipc asgi_redis asgi_rabbitmq wirecloud_keycloak && \
24+
pip install --no-cache-dir "channels<2.4.0" asgi_ipc asgi_redis asgi_rabbitmq wirecloud_keycloak && \
2525
mkdir -p /opt/wirecloud_instance /var/www/static && \
2626
cd /opt && \
2727
wirecloud-admin startproject wirecloud_instance wirecloud_instance && \

0 commit comments

Comments
 (0)