From e40678b6c1c95c8a0d18bb5670befd0dd0de2dd1 Mon Sep 17 00:00:00 2001 From: Christopher Baklid Date: Sat, 19 May 2018 20:17:49 +0200 Subject: re-add snake cog and install zlib in base container --- bot/__main__.py | 2 +- docker/Dockerfile.base | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bot/__main__.py b/bot/__main__.py index 88ab82245..6c115f40c 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -59,7 +59,7 @@ bot.load_extension("bot.cogs.deployment") bot.load_extension("bot.cogs.eval") bot.load_extension("bot.cogs.fun") bot.load_extension("bot.cogs.hiphopify") -# bot.load_extension("bot.cogs.snakes"), temporarily disabled while we fix a PIL/zlib issue +bot.load_extension("bot.cogs.snakes") bot.load_extension("bot.cogs.tags") bot.load_extension("bot.cogs.verification") diff --git a/docker/Dockerfile.base b/docker/Dockerfile.base index 41b4fa46e..7183bd2fa 100644 --- a/docker/Dockerfile.base +++ b/docker/Dockerfile.base @@ -3,6 +3,7 @@ FROM python:3.6-alpine3.7 RUN apk add --update tini RUN apk add --update build-base RUN apk add --update libffi-dev +RUN apk add --update zlib RUN pip install pipenv RUN mkdir /bot -- cgit v1.2.3