From fc5c905af5f77042b839d39ebf1f7cd49f4531c6 Mon Sep 17 00:00:00 2001 From: Patrick Foley Date: Wed, 28 Aug 2024 11:22:58 -0700 Subject: [PATCH] Update Dockerfile.base (#1042) * Update Dockerfile.base * Update Dockerfile.base --- openfl-docker/Dockerfile.base | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openfl-docker/Dockerfile.base b/openfl-docker/Dockerfile.base index b45a7315cb..1a1ecbb0ba 100644 --- a/openfl-docker/Dockerfile.base +++ b/openfl-docker/Dockerfile.base @@ -19,6 +19,7 @@ RUN --mount=type=cache,id=apt-dev,target=/var/cache/apt \ build-essential \ --no-install-recommends && \ rm -rf /var/lib/apt/lists/* +RUN apt-get purge -y linux-libc-dev # Create an unprivileged user. RUN groupadd -g 1001 default && \ @@ -35,4 +36,4 @@ RUN pip install --no-cache-dir -U pip setuptools wheel && \ # Download thirdparty licenses. RUN INSTALL_SOURCES=yes /home/openfl/openfl-docker/licenses.sh -CMD ["/bin/bash"] \ No newline at end of file +CMD ["/bin/bash"]