From 1e0d253df57c3d794e8e0ca935f3c6a71bc69175 Mon Sep 17 00:00:00 2001 From: Nikhil Jha Date: Wed, 24 Apr 2024 13:59:22 -0700 Subject: [PATCH] feat: install redis for sopel --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b05fcea..1f08dca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,5 +27,5 @@ RUN adduser --disabled-password --gecos "" --home /home/sopel --uid 1000 sopel RUN apt-get update && apt-get install -y --no-install-recommends libcrack2-dev && rm -rf /var/lib/apt/lists/* USER sopel ENV PATH="${PATH}:/home/sopel/.local/bin" -RUN python -m pip install pipx && pipx install git+https://github.com/sopel-irc/sopel.git#ab32aca08f7bf67d1ba754fdfc22a10ee5a442d0 && pipx inject sopel ocflib celery kombu +RUN python -m pip install pipx && pipx install git+https://github.com/sopel-irc/sopel.git#ab32aca08f7bf67d1ba754fdfc22a10ee5a442d0 && pipx inject sopel ocflib celery kombu redis CMD [ "sopel", "start" ]