-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #421 from OpenConext/feature/build-and-publish-tes…
…t-container Add docker build test image workflow
- Loading branch information
Showing
4 changed files
with
88 additions
and
3 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,58 @@ | ||
name: build-push-test-docker-image | ||
|
||
on: | ||
push: | ||
branches: | ||
- feature/build-and-publish-test-container | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-push-test-docker-image: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Build the app | ||
uses: openconext/build-and-publish-test-container/php82-node20@main | ||
with: | ||
use_yarn: true | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Set docker labels and tags | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: ghcr.io/openconext/stepup-ra/stepup-ra | ||
flavor: | | ||
latest=false | ||
suffix=-test | ||
tags: | | ||
type=ref,event=tag | ||
type=semver,pattern={{version}} | ||
type=sha | ||
type=raw,suffix=,value=test | ||
- name: Build and push the TEST image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
file: docker/Dockerfile.test | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} |
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 |
---|---|---|
|
@@ -4,3 +4,4 @@ ENCORE=yes | |
ASSETIC=no | ||
NODE_VERSION=20 | ||
COMPOSER_VERSION=2 | ||
TEST_EXTRA_DIRS="ci/" |
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 |
---|---|---|
@@ -1,7 +1,11 @@ | ||
when@dev: &template | ||
when@dev: | ||
web_profiler: | ||
toolbar: true | ||
intercept_redirects: false | ||
when@test: *template | ||
when@smoketest: *template | ||
|
||
when@test: &testTemplate | ||
web_profiler: | ||
toolbar: false | ||
intercept_redirects: false | ||
when@smoketest: *testTemplate | ||
|
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,22 @@ | ||
FROM busybox AS unpack | ||
WORKDIR /unpack | ||
COPY output.zip /unpack | ||
RUN unzip /unpack/output.zip | ||
|
||
FROM ghcr.io/openconext/openconext-basecontainers/php82-apache2:latest | ||
# Set the default workdir | ||
WORKDIR /var/www/html | ||
COPY --from=unpack /unpack/ /var/www/html/ | ||
# Add the application configuration files | ||
COPY config/openconext/parameters.yaml.dist config/openconext/parameters.yaml | ||
COPY config/openconext/samlstepupproviders_parameters.yaml.dist config/openconext/samlstepupproviders_parameters.yaml | ||
|
||
# Add the config files for Apache2 | ||
RUN rm -rf /etc/apache2/sites-enabled/* | ||
COPY ./docker/conf/apache2.conf /etc/apache2/sites-enabled/apache2.conf | ||
RUN rm -rf /var/www/html/var/cache/prod &&\ | ||
mkdir -p /var/www/html/var/cache &&\ | ||
chown -R www-data /var/www/html/var | ||
|
||
EXPOSE 80 | ||
CMD ["apache2-foreground"] |