Skip to content

Commit

Permalink
HOTFIX: #410 broke our docker builds (#419)
Browse files Browse the repository at this point in the history
I had tested a previous version of the dockerfile in #410, but not the final one, which fails to build properly. It was missing libz. :(
  • Loading branch information
Mr0grog authored Jun 10, 2019
1 parent 8d65ff4 commit 95965b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM python:3.7-slim
MAINTAINER [email protected]

RUN apt-get update && apt-get install -y --no-install-recommends \
git gcc g++ pkg-config libxml2-dev libxslt-dev
git gcc g++ pkg-config libxml2-dev libxslt-dev libz-dev

# Set the working directory to /app
WORKDIR /app
Expand Down

0 comments on commit 95965b1

Please sign in to comment.