diff --git a/CHANGELOG.md b/CHANGELOG.md index cb8b2e3..7e35598 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add ubuntu-jammy distribution (build + Docker support) - Add ubuntu-focal distribution (build + Docker support) -## Changed +### Changed - Update Eclipse Temurin Ubuntu image from 17.0.3_7-jre -> 17.0.5_8-jre-(jammy|focal) - Update Eclipse Temurin Debian image from 17.0.3_7-jdk -> 17.0.5_8-jdk - Update Debian slim image from stable-20220622-slim -> stable-20221205-slim @@ -20,9 +20,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Update Alpine init image from Alpine 3.16.0 -> 3.17.0 - Update Alpine init image dependency libintl 0.21-r2 -> 0.21.1-r1 - Update Alpine init image dependency gettext 0.21-r2 -> 0.21.1-r1 +- Downgrade Ubuntu focal dependency dumb-init 1.2.5-2 -> 1.2.2-1.2 - Update Multipaper to 1.19.2 -## Removed +### Removed - Generic ubuntu distribution ## [0.1.2] - 2022-06-07 diff --git a/build/ubuntu-focal/Dockerfile.master b/build/ubuntu-focal/Dockerfile.master index fa83bb9..257eb2d 100644 --- a/build/ubuntu-focal/Dockerfile.master +++ b/build/ubuntu-focal/Dockerfile.master @@ -9,7 +9,7 @@ ARG MASTER_VERSION=2.10.1 # Setup groups and install dumb init RUN addgroup --gid 1001 multipaper && \ adduser --system --home /multipaper --uid 1001 --gid 1001 multipaper && \ - apt update && apt install -y --no-install-recommends dumb-init=1.2.5-2 + apt update && apt install -y --no-install-recommends dumb-init=1.2.2-1.2 # Use the multipaper's home directory as our work directory WORKDIR /multipaper diff --git a/build/ubuntu-focal/Dockerfile.server b/build/ubuntu-focal/Dockerfile.server index d454a48..5625902 100644 --- a/build/ubuntu-focal/Dockerfile.server +++ b/build/ubuntu-focal/Dockerfile.server @@ -9,7 +9,7 @@ ARG FULL_VERSION="$VERSION-$BUILD" # Setup groups and install dumb init RUN addgroup --gid 1001 multipaper && \ adduser --system --home /multipaper --uid 1001 --gid 1001 multipaper && \ - apt update && apt install -y --no-install-recommends dumb-init=1.2.5-2 + apt update && apt install -y --no-install-recommends dumb-init=1.2.2-1.2 # Use the multipaper's home directory as our work directory WORKDIR /multipaper