Skip to content

Commit

Permalink
fix: Regression test for #2066 (#2096)
Browse files Browse the repository at this point in the history
* fix: Regression test for #2066

- Test `Dockerfile_test_issue_2066` fails on main@28432d3c

* np: Comment
  • Loading branch information
gabyx authored May 18, 2022
1 parent 323e616 commit 2789b97
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions integration/dockerfiles/Dockerfile_test_issue_2066
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
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
# Fails on main@28432d3c before #2066, the symlink is not existing here.
RUN ls -al /usr/lib/x86_64-linux-gnu/libbsd.so.0

0 comments on commit 2789b97

Please sign in to comment.