From ff72dab2654b97320b3721f668e44633ae7ad37c Mon Sep 17 00:00:00 2001 From: foorschtbar Date: Tue, 23 Jul 2024 21:38:37 +0000 Subject: [PATCH] CI --- .github/workflows/build.yml | 83 +++++++++++++++++++++++++++++++++++++ Dockerfile | 10 +++++ docker/apache.conf | 32 ++++++++++++++ 3 files changed, 125 insertions(+) create mode 100644 .github/workflows/build.yml create mode 100644 Dockerfile create mode 100644 docker/apache.conf diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..e8ef075 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,83 @@ +name: Build Docker Image + +on: [push] + +defaults: + run: + working-directory: build + +env: + REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} + +jobs: + build-backend: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + path: build + + - name: Cache Composer dependencies + uses: actions/cache@v2 + with: + path: /tmp/composer-cache + key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} + + - name: Build + uses: php-actions/composer@v6 + with: + php_version: "8.3" + dev: no + args: --optimize-autoloader + working_dir: build + + - 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 + path: build + + build-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: Log in to the Container registry + uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + - name: Build and push Docker image + id: push + uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 + with: + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..dcdcb4c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM php:8.3-apache + +RUN docker-php-ext-install pdo_mysql + +COPY ./ /var/www/html + +RUN chown -R www-data:www-data /var/www/html + +# configure apache +COPY ./docker/apache.conf /etc/apache2/sites-available/000-default.conf \ No newline at end of file diff --git a/docker/apache.conf b/docker/apache.conf new file mode 100644 index 0000000..aa6f58c --- /dev/null +++ b/docker/apache.conf @@ -0,0 +1,32 @@ +User www-data +Group www-data + + + ServerName strichliste + + DocumentRoot /var/www/html/public + + AllowOverride All + Order Allow,Deny + Allow from All + + FallbackResource /index.php + + + # uncomment the following lines if you install assets as symlinks + # or run into problems when compiling LESS/Sass/CoffeeScript assets + + Options FollowSymlinks + + + ErrorLog ${APACHE_LOG_DIR}/error.log + CustomLog ${APACHE_LOG_DIR}/access.log combined + + # Change log to works better behind a reverse proxy + LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined + LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy + ErrorLog ${APACHE_LOG_DIR}/error.log + SetEnvIf X-Forwarded-For "^.*\..*\..*\..*" forwarded + CustomLog ${APACHE_LOG_DIR}/access.log combined env=!forwarded + CustomLog ${APACHE_LOG_DIR}/access.log proxy env=forwarded + \ No newline at end of file