From 0233475d00046e0f1239b92a1da336f26b80e850 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Sun, 20 Nov 2022 16:32:28 +0100 Subject: [PATCH] Automatically build a docker image to ghcr.io --- .github/workflows/build-publish.yml | 80 +++++++++++++++++++++++++++++ Dockerfile | 4 ++ nginx.conf | 38 ++++++++++++++ 3 files changed, 122 insertions(+) create mode 100644 .github/workflows/build-publish.yml create mode 100644 Dockerfile create mode 100644 nginx.conf diff --git a/.github/workflows/build-publish.yml b/.github/workflows/build-publish.yml new file mode 100644 index 0000000..a37107c --- /dev/null +++ b/.github/workflows/build-publish.yml @@ -0,0 +1,80 @@ +name: Build and Publish + +on: + push: + branches: + - main + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + build-publish: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + with: + submodules: true # Fetch hugo themes + fetch-depth: 0 # Fetch all history for .GitInfo and .LastMod + + - name: Setup node (NPM) + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Install node dependencies + run: npm install + + - name: Setup hugo + uses: peaceiris/actions-hugo@v2 + with: + hugo-version: '0.105.0' + extended: true + + # Will use the build.sh script to build the page using hugo. + # The resulting page will be in the ./public directory + - name: Build the hugo page + run: ./scripts/build.sh + + # The current version (v2) of Docker's build-push action uses + # buildx, which comes with BuildKit features that help us speed + # up our builds using additional cache features. Buildx also + # has a lot of other features that are not as relevant to us. + # + # See https://github.com/docker/build-push-action + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + + - name: Login to Github Container Registry + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + + # Create a commit SHA-based tag for the container repositories + - name: Create SHA Container Tag + id: sha_tag + run: | + tag=$(cut -c 1-7 <<< $GITHUB_SHA) + echo "::set-output name=tag::$tag" + + # Build and push the container to the GitHub Container + # Repository. The container will be tagged as "latest" + # and with the short SHA of the commit. + - name: Build and push + uses: docker/build-push-action@v2 + with: + context: . + file: ./Dockerfile + push: true + cache-from: type=registry,ref=ghcr.io/itsdrike/web:latest + cache-to: type=inline + tags: | + ghcr.io/itsdrike/web:latest + ghcr.io/itsdrike/web:${{ steps.sha_tag.outputs.tag }} + build-args: | + git_sha=${{ github.sha }} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..40b8fcb --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM nginx:alpine + +COPY ./nginx.conf /etc/nginx/nginx.conf +COPY ./public/ /usr/share/nginx/html diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..e283212 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,38 @@ +user www-data; +worker_processes auto; + +error_log stderr; +pid /var/run/nginx.pid; + +events { + worker_connections 1024; +} + +http { + include /etc/nginx/mime.types; + default_type application/ocet-stream; + + access_log /dev/stdout; + + sendfile on; + #tcp_nopush on; + #gzip on; + keepalive_timeout 65; + + # Don't send nginx version in headers + server_tokens off; + + # Trust X-Real-IP header from the reverse proxy + #set_real_ip_from 10.1.1.3; + #real_ip_header X-Real-IP; + + server { + listen 80 default_server; + listen [::]:80 default_server; + + root /usr/share/nginx/html; + index index.html; + + error_page 401 403 404 405 407 410 429 451 /error/4xx.html + } +}