diff --git a/dockerfiles/ubuntu/Dockerfile b/dockerfiles/ubuntu/Dockerfile index d8242e5..00df36e 100644 --- a/dockerfiles/ubuntu/Dockerfile +++ b/dockerfiles/ubuntu/Dockerfile @@ -18,6 +18,11 @@ RUN set -e; for pkg in $(go list ./...); do \ done FROM ${base_image} AS resource + +RUN ln -s /usr/bin/dpkg-split /usr/sbin/dpkg-split +RUN ln -s /usr/bin/dpkg-deb /usr/sbin/dpkg-deb +RUN ln -s /bin/rm /usr/sbin/rm + ENV DEBIAN_FRONTEND=noninteractive RUN apt update && apt upgrade -y -o Dpkg::Options::="--force-confdef" RUN apt update \