From bc0e53b42c7c8cbc0c005730f81b5e0206b0f831 Mon Sep 17 00:00:00 2001 From: Verwoerd Date: Thu, 28 Mar 2024 11:31:40 +0100 Subject: [PATCH] Add github actions --- .github/workflows/docker.yml | 43 ++++++++++++++++++++++++++++++++++++ Dockerfile | 1 - 2 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/docker.yml diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml new file mode 100644 index 0000000..4f63a80 --- /dev/null +++ b/.github/workflows/docker.yml @@ -0,0 +1,43 @@ +name: Docker +on: + push: + schedule: + - cron: "42 2 2 * *" + workflow_dispatch: + +env: + REGISTRY: ghcr.io + REPO_NAME: ${{ github.repository }} + +jobs: + buildDockerImage: + name: Build Docker image + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: nschloe/action-cached-lfs-checkout@v1 + with: + submodules: recursive + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - name: Login to GitHub Container Registry + uses: docker/login-action@v1 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Repo name + run: echo "IMAGE_ID=$(echo ${{ env.REGISTRY }}/${{ env.REPO_NAME }} | tr '[A-Z]' '[a-z]')" >> $GITHUB_ENV + - name: Docker meta + id: meta + uses: docker/metadata-action@v3 + with: + images: "${{ env.IMAGE_ID }}" + tags: type=sha, prefix={{date 'YYYYMMDD'}}- + - name: Build and push Docker image + uses: docker/build-push-action@v2 + with: + context: . + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + push: ${{ github.ref == 'refs/heads/main' }} diff --git a/Dockerfile b/Dockerfile index 86e5fd2..8cd6551 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,5 @@ FROM wisvch/nginx USER root RUN sed -i -r '/404.html;/a\ error_page 404 /404.html;' /etc/nginx/conf.d/default.conf RUN sed -i -r '/^server \{.*/a absolute_redirect off;' /etc/nginx/conf.d/default.conf -RUN sed -i -r '/^server \{.*/a rewrite ^/photos$ https://photos.app.goo.gl/icvwNDdcjVrcBF7j7 last;' /etc/nginx/conf.d/default.conf USER 100 COPY --from=builder /src/public/ /srv/