Skip to content

Commit

Permalink
switch builder dockerfile to 2023 base image (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxfactorial authored Jan 2, 2024
1 parent 5f1f946 commit d1412da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.builder
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM public.ecr.aws/amazonlinux/amazonlinux:2 as build-stage
FROM public.ecr.aws/amazonlinux/amazonlinux:2023 as build-stage
ARG ARCH=x86_64
RUN rpm --rebuilddb && yum install -y yum-plugin-ovl jq
RUN yum groupinstall -y "Development tools"
RUN dnf install -y jq
RUN dnf groupinstall -y "Development tools"
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
RUN source $HOME/.cargo/env && rustup target add ${ARCH}-unknown-linux-musl
RUN curl -k -o /${ARCH}-linux-musl-cross.tgz https://musl.cc/${ARCH}-linux-musl-cross.tgz \
Expand Down

0 comments on commit d1412da

Please sign in to comment.