-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/create docker publish action #108
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
18b8d71
Add GHA to build the test image. First try
quartje 98115ce
GHA docker test instance: Do not use dev container
quartje 2390f02
GHA: Use component_info to include information on what directories sh…
quartje a66e04b
Docker test: Use busybox image to unzip
quartje File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,57 @@ | ||
name: build-push-test-docker-image | ||
|
||
on: | ||
push: | ||
branches: feature/create_docker_publish_action | ||
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-azuremfa/stepup-azuremfa | ||
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ SYMFONY_VERSION=6 | |
ENCORE=yes | ||
ASSETIC=no | ||
NODE_VERSION=20 | ||
TEST_EXTRA_DIRS="dev/ tests/ 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 |
---|---|---|
@@ -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 the files unpacked in stage unpack | ||
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/institutions.yaml.dist config/openconext/institutions.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/* && rm -rf /var/www/html/output.zip | ||
COPY ./docker/conf/azuremfa-apache2.conf /etc/apache2/sites-enabled/azuremfa.conf | ||
RUN rm -rf /var/www/html/var/cache/prod && chown -R www-data /var/www/html/var | ||
EXPOSE 80 | ||
|
||
CMD ["apache2-foreground"] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️🔥