From cd7e9db1de998883d809f12a68365e8ec04b3ea2 Mon Sep 17 00:00:00 2001 From: d3vyce Date: Sun, 11 Feb 2024 11:53:34 +0100 Subject: [PATCH] add: blog image build --- .gitea/workflows/build_blog_image.yml | 31 +++++++++++++++++++++++++++ Dockerfile | 18 ++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 .gitea/workflows/build_blog_image.yml create mode 100644 Dockerfile diff --git a/.gitea/workflows/build_blog_image.yml b/.gitea/workflows/build_blog_image.yml new file mode 100644 index 0000000..16f1419 --- /dev/null +++ b/.gitea/workflows/build_blog_image.yml @@ -0,0 +1,31 @@ +name: Build Blog Docker Image + +on: + push: + branches: + - main + +jobs: + build docker: + runs-on: linux_amd + steps: + - name: checkout code + uses: actions/checkout@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login to Docker registry + uses: docker/login-action@v2 + with: + registry: git.d3vyce.fr + username: ${{ github.actor }} + password: ${{ secrets.GIT_TOKEN }} + - name: Build and push + uses: docker/build-push-action@v4 + with: + context: . + file: ./Dockerfile + platforms: linux/amd64 + push: true + tags: git.d3vyce.fr/${{ github.repository }}:latest diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4a6dbac --- /dev/null +++ b/Dockerfile @@ -0,0 +1,18 @@ +FROM git.d3vyce.fr/d3vyce/hugo:latest AS build + +WORKDIR /opt/blog +COPY . /opt/blog/ + +RUN git submodule update --recursive +RUN hugo + + +FROM nginx:1.25-alpine + +WORKDIR /usr/share/nginx/html +COPY --from=build /opt/blog/public /usr/share/nginx/html/ + +RUN apk update && \ + apk add --no-cache ca-certificates libc6-compat libstdc++ git + +EXPOSE 80/tcp