File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
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
16
16
17
17
ARG ARCH=amd64
18
18
ARG binary=./_output/${ARCH}/blobplugin
@@ -29,14 +29,14 @@ RUN chmod +x /blobfuse-proxy/init.sh && \
29
29
chmod +x /blobfuse-proxy/blobfuse-proxy
30
30
31
31
# packages that are only needed by aznfs: procps conntrack iptables bind9-host iproute2 bash netcat sysvinit-utils.
32
- 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
32
+ 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
33
33
34
34
# install aznfs
35
35
RUN if [ "$ARCH" = "amd64" ] ; then \
36
36
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; \
37
37
else \
38
38
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
39
- RUN tar xvzf aznfs.tar.gz -C / && rm aznfs.tar.gz
39
+ RUN tar xvzf aznfs.tar.gz -C / --keep-directory-symlink && rm aznfs.tar.gz
40
40
41
41
RUN if [ "$ARCH" = "amd64" ] ; then \
42
42
clean-install libcurl4-gnutls-dev && \
You can’t perform that action at this time.
0 commit comments