Skip to content

Commit 2e208db

Browse files
authored
Merge pull request #1105 from cvvz/release-1.23-1090
[release-1.23] feat: switch to bookworm debian base image
2 parents cfe12a0 + 8d6a4cc commit 2e208db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/blobplugin/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM registry.k8s.io/build-image/debian-base:bullseye-v1.4.3
15+
FROM registry.k8s.io/build-image/debian-base:bookworm-v1.0.0
1616

1717
ARG ARCH=amd64
1818
ARG binary=./_output/${ARCH}/blobplugin
@@ -35,14 +35,14 @@ RUN chmod +x /blobfuse-proxy/init.sh && \
3535
chmod +x /blobfuse-proxy/blobfuse-proxy
3636

3737
# packages that are only needed by aznfs: procps conntrack iptables bind9-host iproute2 bash netcat sysvinit-utils.
38-
RUN apt update && apt upgrade -y && apt-mark unhold libcap2 && clean-install ca-certificates uuid-dev util-linux mount udev wget e2fsprogs nfs-common netbase procps conntrack iptables bind9-host iproute2 bash netcat sysvinit-utils
38+
RUN apt update && apt upgrade -y && apt-mark unhold libcap2 && clean-install ca-certificates uuid-dev util-linux mount udev wget e2fsprogs nfs-common netbase procps conntrack iptables bind9-host iproute2 bash netcat-traditional sysvinit-utils
3939

4040
# install aznfs
4141
RUN if [ "$ARCH" = "amd64" ] ; then \
4242
wget -O aznfs.tar.gz https://github.com/Azure/AZNFS-mount/releases/download/1.0.8/aznfs-1.0.8-1.x86_64.tar.gz; \
4343
else \
4444
wget -O aznfs.tar.gz https://github.com/Azure/AZNFS-mount/releases/download/1.0.8/aznfs-1.0.8-1.arm64.tar.gz;fi
45-
RUN tar xvzf aznfs.tar.gz -C / && rm aznfs.tar.gz
45+
RUN tar xvzf aznfs.tar.gz -C / --keep-directory-symlink && rm aznfs.tar.gz
4646

4747
# install azcopy
4848
ARG azcopyURL=https://azcopyvnext.azureedge.net/releases/release-10.21.2-20231106/azcopy_linux_amd64_10.21.2.tar.gz

0 commit comments

Comments
 (0)