You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM quay.io/qiotproject/ubi-multiarch:$BASE_MULTIARCH_VERSION
ARG DOCKER_ARCH
ARG GRAALVM_VERSION
ARG JAVA_VERSION
ARG RHEL_VERSION
ARG LIBSTDC_VERSION
LABEL "architecture"="$DOCKER_ARCH"
LABEL "multiarch"="true"
RUN dnf -y upgrade
RUN dnf -y install gcc glibc-static zlib-devel libstdc++-static maven
RUN dnf clean all
RUN mkdir -p /opt/graalvm
WORKDIR /opt/graalvm
RUN curl -LJ https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-$GRAALVM_VERSION/graalvm-ce-java$JAVA_VERSION-linux-$DOCKER_ARCH-$GRAALVM_VERSION.tar.gz \