11 lines
308 B
Plaintext
11 lines
308 B
Plaintext
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
|