-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0affa5d
commit 2a45ab1
Showing
9 changed files
with
146 additions
and
135 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,125 @@ | ||
name: Build Docker Image | ||
|
||
on: [push] | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: strichliste | ||
BRANCH: "wamp" | ||
|
||
jobs: | ||
build-frontend: | ||
name: Build Frontend | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: "Westwoodlabs/strichliste-web-frontend" | ||
ref: ${{ env.BRANCH }} | ||
|
||
- name: Use Node.js | ||
uses: actions/setup-node@v4 | ||
|
||
- name: Install dependencies | ||
run: yarn install | ||
|
||
- name: Build Frontend | ||
run: | | ||
export NODE_OPTIONS=--openssl-legacy-provider | ||
CI=false yarn build | ||
- name: Display structure of files | ||
run: ls -R | ||
|
||
- name: Upload build artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: frontend | ||
path: build | ||
|
||
build-backend: | ||
name: Build Backend | ||
needs: build-frontend | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: "Westwoodlabs/strichliste-backend" | ||
ref: ${{ env.BRANCH }} | ||
|
||
- name: Build | ||
uses: php-actions/composer@v6 | ||
with: | ||
php_version: "8.1" | ||
dev: no | ||
args: --optimize-autoloader | ||
|
||
- name: Display structure of files | ||
run: ls -R | ||
|
||
- name: Cleanup | ||
run: | | ||
sudo rm -rf var/cache/* | ||
- name: Upload build artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: backend | ||
|
||
build-image: | ||
name: Build and Push Docker Image | ||
needs: build-backend | ||
runs-on: ubuntu-latest | ||
if: github.ref == 'refs/heads/wamp' | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Download Backend artifacts | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: backend | ||
path: ./build/ | ||
|
||
- name: Download Frontend artifacts | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: frontend | ||
path: ./build/public | ||
|
||
- name: Display structure of files | ||
run: ls -R | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
tags: | | ||
# set latest tag for default branch | ||
type=raw,value=latest,enable={{is_default_branch}} | ||
- name: Build and push Docker image | ||
id: docker_build_and_push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
platforms: linux/amd64,linux/arm/v7,linux/arm64 | ||
|
||
- name: Image digests | ||
run: | | ||
echo image digest: ${{ steps.docker_build_and_push.outputs.digest }} | ||
|
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,10 @@ | ||
FROM php:8.1-apache | ||
|
||
RUN docker-php-ext-install pdo_mysql | ||
|
||
COPY ./build/ /var/www/html | ||
|
||
RUN chown -R www-data:www-data /var/www/html | ||
|
||
# configure apache | ||
COPY ./src/apache.conf /etc/apache2/sites-available/000-default.conf |
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
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.