From b3fbcec604acf350323b30a28d14ada1b0792d57 Mon Sep 17 00:00:00 2001 From: Scott Morrison Date: Tue, 20 Jul 2021 04:14:22 +0000 Subject: [PATCH] chore(.docker): add missing library (#8370) Something must have changed that now needs this library. It's only installed in an intemediate build, anyway. --- .docker/debian/lean/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docker/debian/lean/Dockerfile b/.docker/debian/lean/Dockerfile index 8d9270efdae3e..61eae2f28dc5d 100644 --- a/.docker/debian/lean/Dockerfile +++ b/.docker/debian/lean/Dockerfile @@ -11,7 +11,7 @@ FROM debian as leanproject-builder USER root # install prerequisites -RUN apt-get update && apt-get install curl git python3 python3-pip python3-venv -y && apt-get clean +RUN apt-get update && apt-get install curl git python3 python3-pip python3-venv zlib1g-dev -y && apt-get clean # create a non-root user RUN useradd -m lean