File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed
.pipelines/build/dockerfiles Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -13,18 +13,17 @@ COPY ${ARTIFACT_DIR}/bin/azure-npm.exe npm.exe
1313CMD ["npm.exe" , "start" "--kubeconfig=.\\ kubeconfig" ]
1414
1515
16- FROM --platform=linux/${ARCH} mcr.microsoft.com/mirror/docker/library/ubuntu:22 .04 as linux
16+ FROM --platform=linux/${ARCH} mcr.microsoft.com/mirror/docker/library/ubuntu:24 .04 as linux
1717ARG ARTIFACT_DIR
1818
19- RUN apt-get update && \
20- apt-get install -y \
21- libc-bin=2.31-0ubuntu9.17 \
22- libc6=2.31-0ubuntu9.17 \
23- libtasn1-6=4.16.0-2ubuntu0.1 \
24- libgnutls30=3.6.13-2ubuntu1.12 \
25- iptables ipset ca-certificates && \
26- apt-get autoremove -y && \
27- apt-get clean
19+ RUN apt-get update && apt-get install -y iptables ipset ca-certificates && apt-get autoremove -y && apt-get clean
20+ # RUN apt-get update && \
21+ # apt-get install -y \
22+ # linux-libc-dev \
23+ # libc6-dev \
24+ # libtasn1-6 \
25+ # gnutls30 iptables ipset ca-certificates
26+ # RUN apt-get autoremove -y && apt-get clean
2827
2928COPY ${ARTIFACT_DIR}/bin/azure-npm /usr/bin/azure-npm
3029ENTRYPOINT ["/usr/bin/azure-npm" , "start" ]
You can’t perform that action at this time.
0 commit comments