Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion opensuse-base-image/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.github.cafapi</groupId>
<artifactId>opensuse-base-images-aggregator</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>7.0.0-SNAPSHOT</version>
</parent>

<artifactId>opensuse-base-image</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion opensuse-dotnet10-images/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.github.cafapi</groupId>
<artifactId>opensuse-base-images-aggregator</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>7.0.0-SNAPSHOT</version>
</parent>

<artifactId>opensuse-dotnet10-images</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions opensuse-dotnet10-images/src/main/docker/Dockerfile.aspnet
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ARG BASE_IMAGE
FROM $BASE_IMAGE

RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc && \
curl -Lfo /etc/zypp/repos.d/microsoft-prod.repo https://packages.microsoft.com/config/opensuse/15/prod.repo && \
curl -Lfo /etc/zypp/repos.d/microsoft-prod.repo https://packages.microsoft.com/config/opensuse/16/prod.repo && \
chown root:root /etc/zypp/repos.d/microsoft-prod.repo && \
zypper -n install aspnetcore-runtime-10.0 && \
zypper -n --gpg-auto-import-keys install aspnetcore-runtime-10.0 && \
zypper -n clean --all
4 changes: 2 additions & 2 deletions opensuse-dotnet10-images/src/main/docker/Dockerfile.runtime
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ARG BASE_IMAGE
FROM $BASE_IMAGE

RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc && \
curl -Lfo /etc/zypp/repos.d/microsoft-prod.repo https://packages.microsoft.com/config/opensuse/15/prod.repo && \
curl -Lfo /etc/zypp/repos.d/microsoft-prod.repo https://packages.microsoft.com/config/opensuse/16/prod.repo && \
chown root:root /etc/zypp/repos.d/microsoft-prod.repo && \
zypper -n install dotnet-runtime-10.0 && \
zypper -n --gpg-auto-import-keys install dotnet-runtime-10.0 && \
zypper -n clean --all
4 changes: 2 additions & 2 deletions opensuse-dotnet10-images/src/main/docker/Dockerfile.sdk
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ARG BASE_IMAGE
FROM $BASE_IMAGE

RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc && \
curl -Lfo /etc/zypp/repos.d/microsoft-prod.repo https://packages.microsoft.com/config/opensuse/15/prod.repo && \
curl -Lfo /etc/zypp/repos.d/microsoft-prod.repo https://packages.microsoft.com/config/opensuse/16/prod.repo && \
chown root:root /etc/zypp/repos.d/microsoft-prod.repo && \
zypper -n install dotnet-sdk-10.0 && \
zypper -n --gpg-auto-import-keys install dotnet-sdk-10.0 && \
zypper -n clean --all
2 changes: 1 addition & 1 deletion opensuse-java17-images/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.github.cafapi</groupId>
<artifactId>opensuse-base-images-aggregator</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>7.0.0-SNAPSHOT</version>
</parent>

<artifactId>opensuse-java17-images</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion opensuse-java21-images/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.github.cafapi</groupId>
<artifactId>opensuse-base-images-aggregator</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>7.0.0-SNAPSHOT</version>
</parent>

<artifactId>opensuse-java21-images</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
<parent>
<groupId>com.github.cafapi</groupId>
<artifactId>opensuse-base-images-aggregator</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>7.0.0-SNAPSHOT</version>
</parent>

<artifactId>opensuse-nodejs20-image</artifactId>
<artifactId>opensuse-nodejs22-image</artifactId>
<packaging>pom</packaging>

<name>openSUSE NodeJS20 image</name>
<name>openSUSE NodeJS22 image</name>

<build>
<plugins>
Expand All @@ -56,7 +56,7 @@
<configuration>
<images>
<image>
<name>${dockerCafImagePrefix}opensuse-nodejs20${dockerProjectVersion}</name>
<name>${dockerCafImagePrefix}opensuse-nodejs22${dockerProjectVersion}</name>
<build>
<contextDir>.</contextDir>
<args>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ ARG BASE_IMAGE
FROM $BASE_IMAGE

# Update the OS packages and install NodeJS
RUN zypper -n install nodejs20 npm && \
RUN zypper -n install nodejs22 npm && \
zypper -n clean --all
2 changes: 1 addition & 1 deletion opensuse-python3-image/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.github.cafapi</groupId>
<artifactId>opensuse-base-images-aggregator</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>7.0.0-SNAPSHOT</version>
</parent>

<artifactId>opensuse-python3-image</artifactId>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<groupId>com.github.cafapi</groupId>
<artifactId>opensuse-base-images-aggregator</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>7.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<name>openSUSE Base Images Aggregator</name>
Expand Down Expand Up @@ -60,11 +60,11 @@

<modules>
<module>opensuse-base-image</module>
<module>opensuse-java8-images</module>
<module>opensuse-java11-images</module>
<!--<module>opensuse-java8-images</module>-->
<!--<module>opensuse-java11-images</module>-->
<module>opensuse-java17-images</module>
<module>opensuse-java21-images</module>
<module>opensuse-nodejs20-image</module>
<module>opensuse-nodejs22-image</module>
<module>opensuse-dotnet10-images</module>
<module>opensuse-python3-image</module>
</modules>
Expand Down Expand Up @@ -103,7 +103,7 @@
<imageManagement>
<image>
<repository>${dockerHubPublic}/opensuse/leap</repository>
<tag>latest</tag>
<tag>16.0</tag>
</image>
</imageManagement>
</configuration>
Expand Down
File renamed without changes.