Skip to content

Commit ec66dff

Browse files
committed
otimize graalvm fix bugs 18 - switch image to ubuntu arm, revert to work with ARG BUILDPLATFORM, remove cache
add same runner: ubuntu-latest switch to mvnw improve profile default add -Pnative no enable build native march again, and runner arm enable cache and SPRING_ACTIVE_PROFILE=cicd try to fix docker add wget add make to install musl enable static with fix make install and try to fix docker manifest
1 parent ff17cb6 commit ec66dff

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Dockerfile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,12 @@ RUN microdnf install --nodocs -y \
2020
&& microdnf clean all
2121

2222
# Install musl
23-
RUN wget -q https://musl.libc.org/releases/musl-1.2.5.tar.gz -O /tmp/musl-1.2.5.tar.gz \
24-
&& tar -xJf /tmp/musl-1.2.5.tar.gz -C /tmp \
25-
&& cd /tmp/musl-1.2.5 \
26-
&& ./configure --prefix=/usr/local/musl \
27-
&& make && make install
23+
RUN wget -q https://musl.libc.org/releases/musl-1.2.5.tar.gz \
24+
-O /tmp/musl-1.2.5.tar.gz && \
25+
tar -xzf /tmp/musl-1.2.5.tar.gz -C /tmp && \
26+
cd /tmp/musl-1.2.5 && \
27+
./configure --prefix=/usr/local/musl && \
28+
make && make install
2829

2930
# copy only what's needed for mvnw bootstrap
3031
COPY mvnw ./

0 commit comments

Comments
 (0)