Skip to content

Commit d1412da

Browse files
authored
switch builder dockerfile to 2023 base image (#325)
1 parent 5f1f946 commit d1412da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile.builder

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM public.ecr.aws/amazonlinux/amazonlinux:2 as build-stage
1+
FROM public.ecr.aws/amazonlinux/amazonlinux:2023 as build-stage
22
ARG ARCH=x86_64
3-
RUN rpm --rebuilddb && yum install -y yum-plugin-ovl jq
4-
RUN yum groupinstall -y "Development tools"
3+
RUN dnf install -y jq
4+
RUN dnf groupinstall -y "Development tools"
55
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
66
RUN source $HOME/.cargo/env && rustup target add ${ARCH}-unknown-linux-musl
77
RUN curl -k -o /${ARCH}-linux-musl-cross.tgz https://musl.cc/${ARCH}-linux-musl-cross.tgz \

0 commit comments

Comments
 (0)