Skip to content

Commit

Permalink
GHA: Add action to build a test image
Browse files Browse the repository at this point in the history
  • Loading branch information
quartje committed Dec 7, 2023
1 parent fa6a780 commit abb04ea
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build-push-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: build-push-docker-image

#on: workflow_dispatch
on:
push:
branches: feature/docker_configs
workflow_dispatch:

jobs:
Expand Down
58 changes: 58 additions & 0 deletions .github/workflows/build-push-test-docker-image.yml
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/php72-node14@main
with:
use_yarn: false

- 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 }}
1 change: 1 addition & 0 deletions component_info
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ ENCORE=yes
ASSETIC=no
NODE_VERSION=14
COMPOSER_VERSION=2
TEST_EXTRA_DIRS="ci/"
14 changes: 14 additions & 0 deletions docker/Dockerfile.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM ghcr.io/openconext/openconext-basecontainers/php72-apache2:latest AS php-build
ADD output.tar /var/www/html/
# Set the default workdir
WORKDIR /var/www/html
# Add the application configuration files
COPY config/legacy/parameters.yaml.dist config/legacy/parameters.yaml
COPY config/legacy/samlstepupproviders_parameters.yaml.dist config/legacy/samlstepupproviders_parameters.yaml
COPY config/packages/prod/monolog.yaml.docker config/packages/prod/monolog.yaml
# Add the config files for Apache2
RUN rm -rf /etc/apache2/sites-enabled/*
COPY ./docker/conf/ra-apache2.conf /etc/apache2/sites-enabled/ra.conf
RUN rm -rf /var/www/html/var/cache/prod && chown -R www-data /var/www/html/var

CMD ["apache2-foreground"]

0 comments on commit abb04ea

Please sign in to comment.