Skip to content

Commit 550373e

Browse files
committed
2.22.0
1 parent e08fc9a commit 550373e

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
name: "PUSH - Build on repository Push"
21
on:
32
push:
43
paths:
@@ -17,18 +16,17 @@ jobs:
1716
strategy:
1817
matrix:
1918
include:
20-
- distro: alpine
21-
distro_variant: 3.22
22-
latest: true
23-
uses: nfrastack/gha/.github/workflows/container-build_and_push.yml@main
19+
- { distro: "alpine", distro_variant: "3.22", latest: "true", arch: "linux/amd64,linux/arm64" }
20+
uses: nfrastack/gha/.github/workflows/container-build_generic.yml@main
2421
with:
25-
platforms: linux/amd64, linux/arm64
26-
base_image: ghcr.io/nfrastack/container-nginx
22+
base_image: "ghcr.io/nfrastack/container-nginx"
23+
tag: ${{ matrix.tag || '' }}
2724
distro: ${{ matrix.distro }}
2825
distro_variant: ${{ matrix.distro_variant }}
29-
include_distro_tag: false
30-
include_variant_tag: false
26+
image_variant: ${{ matrix.image_variant || '' }}
3127
latest: ${{ matrix.latest }}
28+
distro_latest: ${{ matrix.distro_latest }}
29+
platforms: ${{ matrix.arch }}
3230
secrets: inherit
3331
cleanup:
3432
needs: [ build ]

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
## 3.0.0beta 2025-09-12++ <code at nfrastack dot com>
22

33
### Added
4+
- LemonLDAP:NG 2.22.0
45
- Switched to nfastrack/nginx base image
56
- Refactored image
67
- Switch to CSSO for minification on build
78
- Revamped Environment Variables
9+
- Revamped Paths
810

911
## 2.0.84 2025-09-12 <dave at tiredofit dot ca>
1012

Containerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
#
33
# SPDX-License-Identifier: MIT
44

5-
ARG BASE_IMAGE
6-
ARG DISTRO
7-
ARG DISTRO_VARIANT
5+
ARG \
6+
BASE_IMAGE
87

9-
FROM ${BASE_IMAGE}:${DISTRO}_${DISTRO_VARIANT}
8+
FROM ${BASE_IMAGE}
109

1110
LABEL \
1211
org.opencontainers.image.title="LemonLDAP:NG" \
@@ -19,7 +18,7 @@ LABEL \
1918
org.opencontainers.image.licenses="MIT"
2019

2120
ARG \
22-
LEMONLDAP_VERSION="2.21.3" \
21+
LEMONLDAP_VERSION="2.22.0" \
2322
AUTHCAS_VERSION="1.7" \
2423
LASSO_VERSION="v2.9.0" \
2524
LLNG_SESSION_BROWSEABLE_VERSION="v1.3.17" \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Example:
8080
`ghcr.io/nfrastack/container-lemonldap:1.0` or
8181

8282
* `latest` will be the most recent commit
83-
* An otpional `tag` may exist that matches the [CHANGELOG](CHANGELOG.md) - These are the safest
83+
* An optional `tag` may exist that matches the [CHANGELOG](CHANGELOG.md) - These are the safest
8484
* If there are multiple distribution variations it may include a version - see the registry for availability
8585

8686
Have a look at the container registries and see what tags are available.

0 commit comments

Comments
 (0)