Docker: Add musl as a ubuntu dependency (#74127)

Add musl as a ubuntu dependency
pull/73828/head
Kevin Minehart 2 years ago committed by GitHub
parent cd2dcba484
commit 364ca3daa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Dockerfile

@ -111,7 +111,7 @@ RUN if grep -i -q alpine /etc/issue; then \
elif grep -i -q ubuntu /etc/issue; then \ elif grep -i -q ubuntu /etc/issue; then \
DEBIAN_FRONTEND=noninteractive && \ DEBIAN_FRONTEND=noninteractive && \
apt-get update && \ apt-get update && \
apt-get install -y ca-certificates curl tzdata && \ apt-get install -y ca-certificates curl tzdata musl && \
apt-get autoremove -y && \ apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/*; \ rm -rf /var/lib/apt/lists/*; \
else \ else \

Loading…
Cancel
Save