-
Notifications
You must be signed in to change notification settings - Fork 423
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
240 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: azulzulu-11-debian | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "azulzulu-11-debian/**" | ||
- .github/workflows/azulzulu-11-debian.yml | ||
- .github/workflows/_template.yml | ||
- common.sh | ||
- tags-for-dir.sh | ||
- "tests/**" | ||
- "!tests/*.ps*" | ||
- "!tests/*.windows" | ||
pull_request: | ||
paths: | ||
- "azulzulu-11-debian/**" | ||
- .github/workflows/azulzulu-11-debian.yml | ||
- .github/workflows/_template.yml | ||
- common.sh | ||
- tags-for-dir.sh | ||
- "tests/**" | ||
- "!tests/*.ps*" | ||
- "!tests/*.windows" | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/_template.yml | ||
with: | ||
directory: azulzulu-11-debian | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: azulzulu-17-debian | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "azulzulu-17-debian/**" | ||
- .github/workflows/azulzulu-17-debian.yml | ||
- .github/workflows/_template.yml | ||
- common.sh | ||
- tags-for-dir.sh | ||
- "tests/**" | ||
- "!tests/*.ps*" | ||
- "!tests/*.windows" | ||
pull_request: | ||
paths: | ||
- "azulzulu-17-debian/**" | ||
- .github/workflows/azulzulu-17-debian.yml | ||
- .github/workflows/_template.yml | ||
- common.sh | ||
- tags-for-dir.sh | ||
- "tests/**" | ||
- "!tests/*.ps*" | ||
- "!tests/*.windows" | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/_template.yml | ||
with: | ||
directory: azulzulu-17-debian | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: azulzulu-21-debian | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "azulzulu-21-debian/**" | ||
- .github/workflows/azulzulu-21-debian.yml | ||
- .github/workflows/_template.yml | ||
- common.sh | ||
- tags-for-dir.sh | ||
- "tests/**" | ||
- "!tests/*.ps*" | ||
- "!tests/*.windows" | ||
pull_request: | ||
paths: | ||
- "azulzulu-21-debian/**" | ||
- .github/workflows/azulzulu-21-debian.yml | ||
- .github/workflows/_template.yml | ||
- common.sh | ||
- tags-for-dir.sh | ||
- "tests/**" | ||
- "!tests/*.ps*" | ||
- "!tests/*.windows" | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/_template.yml | ||
with: | ||
directory: azulzulu-21-debian | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: azulzulu-8-debian | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "azulzulu-8-debian/**" | ||
- .github/workflows/azulzulu-8-debian.yml | ||
- .github/workflows/_template.yml | ||
- common.sh | ||
- tags-for-dir.sh | ||
- "tests/**" | ||
- "!tests/*.ps*" | ||
- "!tests/*.windows" | ||
pull_request: | ||
paths: | ||
- "azulzulu-8-debian/**" | ||
- .github/workflows/azulzulu-8-debian.yml | ||
- .github/workflows/_template.yml | ||
- common.sh | ||
- tags-for-dir.sh | ||
- "tests/**" | ||
- "!tests/*.ps*" | ||
- "!tests/*.windows" | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/_template.yml | ||
with: | ||
directory: azulzulu-8-debian | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
FROM azul/zulu-openjdk-debian:11 | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends openssh-client procps \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# common for all images | ||
LABEL org.opencontainers.image.title="Apache Maven" | ||
LABEL org.opencontainers.image.source=https://github.com/carlossg/docker-maven | ||
LABEL org.opencontainers.image.url=https://github.com/carlossg/docker-maven | ||
LABEL org.opencontainers.image.description="Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information." | ||
|
||
ENV MAVEN_HOME=/usr/share/maven | ||
|
||
COPY --from=maven:3.9.8-eclipse-temurin-11 ${MAVEN_HOME} ${MAVEN_HOME} | ||
COPY --from=maven:3.9.8-eclipse-temurin-11 /usr/local/bin/mvn-entrypoint.sh /usr/local/bin/mvn-entrypoint.sh | ||
COPY --from=maven:3.9.8-eclipse-temurin-11 /usr/share/maven/ref/settings-docker.xml /usr/share/maven/ref/settings-docker.xml | ||
|
||
RUN ln -s ${MAVEN_HOME}/bin/mvn /usr/bin/mvn | ||
|
||
ARG MAVEN_VERSION=3.9.8 | ||
ARG USER_HOME_DIR="/root" | ||
ENV MAVEN_CONFIG="$USER_HOME_DIR/.m2" | ||
|
||
ENTRYPOINT ["/usr/local/bin/mvn-entrypoint.sh"] | ||
CMD ["mvn"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
FROM azul/zulu-openjdk-debian:17 | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends openssh-client procps \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# common for all images | ||
LABEL org.opencontainers.image.title="Apache Maven" | ||
LABEL org.opencontainers.image.source=https://github.com/carlossg/docker-maven | ||
LABEL org.opencontainers.image.url=https://github.com/carlossg/docker-maven | ||
LABEL org.opencontainers.image.description="Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information." | ||
|
||
ENV MAVEN_HOME=/usr/share/maven | ||
|
||
COPY --from=maven:3.9.8-eclipse-temurin-11 ${MAVEN_HOME} ${MAVEN_HOME} | ||
COPY --from=maven:3.9.8-eclipse-temurin-11 /usr/local/bin/mvn-entrypoint.sh /usr/local/bin/mvn-entrypoint.sh | ||
COPY --from=maven:3.9.8-eclipse-temurin-11 /usr/share/maven/ref/settings-docker.xml /usr/share/maven/ref/settings-docker.xml | ||
|
||
RUN ln -s ${MAVEN_HOME}/bin/mvn /usr/bin/mvn | ||
|
||
ARG MAVEN_VERSION=3.9.8 | ||
ARG USER_HOME_DIR="/root" | ||
ENV MAVEN_CONFIG="$USER_HOME_DIR/.m2" | ||
|
||
ENTRYPOINT ["/usr/local/bin/mvn-entrypoint.sh"] | ||
CMD ["mvn"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
FROM azul/zulu-openjdk-debian:21 | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends openssh-client procps \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# common for all images | ||
LABEL org.opencontainers.image.title="Apache Maven" | ||
LABEL org.opencontainers.image.source=https://github.com/carlossg/docker-maven | ||
LABEL org.opencontainers.image.url=https://github.com/carlossg/docker-maven | ||
LABEL org.opencontainers.image.description="Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information." | ||
|
||
ENV MAVEN_HOME=/usr/share/maven | ||
|
||
COPY --from=maven:3.9.8-eclipse-temurin-11 ${MAVEN_HOME} ${MAVEN_HOME} | ||
COPY --from=maven:3.9.8-eclipse-temurin-11 /usr/local/bin/mvn-entrypoint.sh /usr/local/bin/mvn-entrypoint.sh | ||
COPY --from=maven:3.9.8-eclipse-temurin-11 /usr/share/maven/ref/settings-docker.xml /usr/share/maven/ref/settings-docker.xml | ||
|
||
RUN ln -s ${MAVEN_HOME}/bin/mvn /usr/bin/mvn | ||
|
||
ARG MAVEN_VERSION=3.9.8 | ||
ARG USER_HOME_DIR="/root" | ||
ENV MAVEN_CONFIG="$USER_HOME_DIR/.m2" | ||
|
||
ENTRYPOINT ["/usr/local/bin/mvn-entrypoint.sh"] | ||
CMD ["mvn"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
FROM azul/zulu-openjdk-debian:8 | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends openssh-client procps \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# common for all images | ||
LABEL org.opencontainers.image.title="Apache Maven" | ||
LABEL org.opencontainers.image.source=https://github.com/carlossg/docker-maven | ||
LABEL org.opencontainers.image.url=https://github.com/carlossg/docker-maven | ||
LABEL org.opencontainers.image.description="Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information." | ||
|
||
ENV MAVEN_HOME=/usr/share/maven | ||
|
||
COPY --from=maven:3.9.8-eclipse-temurin-11 ${MAVEN_HOME} ${MAVEN_HOME} | ||
COPY --from=maven:3.9.8-eclipse-temurin-11 /usr/local/bin/mvn-entrypoint.sh /usr/local/bin/mvn-entrypoint.sh | ||
COPY --from=maven:3.9.8-eclipse-temurin-11 /usr/share/maven/ref/settings-docker.xml /usr/share/maven/ref/settings-docker.xml | ||
|
||
RUN ln -s ${MAVEN_HOME}/bin/mvn /usr/bin/mvn | ||
|
||
ARG MAVEN_VERSION=3.9.8 | ||
ARG USER_HOME_DIR="/root" | ||
ENV MAVEN_CONFIG="$USER_HOME_DIR/.m2" | ||
|
||
ENTRYPOINT ["/usr/local/bin/mvn-entrypoint.sh"] | ||
CMD ["mvn"] |