From 44553291107fcec51cbe0913541cdd647bb1995d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20N=C3=BCtzi?= Date: Wed, 18 May 2022 08:48:35 +0200 Subject: [PATCH 1/2] fix: Regression test for #2066 - Test `Dockerfile_test_issue_2066` fails on main@28432d3c --- integration/dockerfiles/Dockerfile_test_issue_2066 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 integration/dockerfiles/Dockerfile_test_issue_2066 diff --git a/integration/dockerfiles/Dockerfile_test_issue_2066 b/integration/dockerfiles/Dockerfile_test_issue_2066 new file mode 100644 index 0000000000..08ffb2c0d7 --- /dev/null +++ b/integration/dockerfiles/Dockerfile_test_issue_2066 @@ -0,0 +1,9 @@ +FROM ubuntu:focal as base +RUN apt update +RUN apt install -y libbsd0 +RUN apt remove -y libbsd0 +RUN apt install -y libbsd0 +RUN ls -al /usr/lib/x86_64-linux-gnu/libbsd.so.0 + +FROM base as b +RUN ls -al /usr/lib/x86_64-linux-gnu/libbsd.so.0 From 53aa5f63ec8c19a27572750d7ecc5345517cae82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20N=C3=BCtzi?= Date: Wed, 18 May 2022 08:57:38 +0200 Subject: [PATCH 2/2] np: Comment --- integration/dockerfiles/Dockerfile_test_issue_2066 | 1 + 1 file changed, 1 insertion(+) diff --git a/integration/dockerfiles/Dockerfile_test_issue_2066 b/integration/dockerfiles/Dockerfile_test_issue_2066 index 08ffb2c0d7..77a26dc1bb 100644 --- a/integration/dockerfiles/Dockerfile_test_issue_2066 +++ b/integration/dockerfiles/Dockerfile_test_issue_2066 @@ -6,4 +6,5 @@ RUN apt install -y libbsd0 RUN ls -al /usr/lib/x86_64-linux-gnu/libbsd.so.0 FROM base as b +# Fails on main@28432d3c before #2066, the symlink is not existing here. RUN ls -al /usr/lib/x86_64-linux-gnu/libbsd.so.0