Skip to content

Commit 489cc65

Browse files
authored
Merge pull request #1421 from k8s-infra-cherrypick-robot/cherry-pick-1418-to-release-1.27
[release-1.27] fix: revert alpine base image change to fix DNS issue
2 parents 2f983a7 + bcc9f34 commit 489cc65

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pkg/azurefileplugin/Dockerfile

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,13 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

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

1717
ARG ARCH=amd64
1818
ARG binary=./_output/${ARCH}/azurefileplugin
1919
COPY ${binary} /azurefileplugin
2020

21-
RUN apk upgrade --available --no-cache && \
22-
apk add --no-cache ca-certificates cifs-utils util-linux e2fsprogs-extra udev xfsprogs-extra nfs-utils
21+
RUN apt update && apt upgrade -y && apt-mark unhold libcap2 && clean-install ca-certificates cifs-utils util-linux e2fsprogs mount udev xfsprogs nfs-common netbase
2322

2423
LABEL maintainers="andyzhangx"
2524
LABEL description="AzureFile CSI Driver"

0 commit comments

Comments
 (0)