a2b9de91f5
Release package / release (push) Failing after 2m57s
Co-authored-by: TakahashiNg <83152264+TakahashiNguyen@users.noreply.github.com> Co-authored-by: gitea-actions <actions-user@noreply.git.demonkernel.io.vn> Reviewed-on: #2
21 lines
518 B
Docker
21 lines
518 B
Docker
FROM alpine:3.22
|
|
|
|
RUN apk update && apk add --no-cache \
|
|
curl \
|
|
bash \
|
|
openjdk21-jdk \
|
|
maven \
|
|
git \
|
|
ca-certificates \
|
|
pnpm
|
|
|
|
# git trust all directories
|
|
RUN git config --global --add safe.directory '*'
|
|
|
|
# Install quarkus
|
|
ENV JBANG_DIR="/root/.jbang"
|
|
ENV PATH="${JBANG_DIR}/bin:${PATH}"
|
|
|
|
RUN curl -Ls https://sh.jbang.dev | bash -s - trust add https://repo1.maven.org/maven2/io/quarkus/quarkus-cli/
|
|
RUN curl -Ls https://sh.jbang.dev | bash -s - app install --fresh --force quarkus@quarkusio
|