chore(build): use hugomods/hugo base image for build
All checks were successful
Build Blog Docker Image / build docker (push) Successful in 1m32s

This commit is contained in:
2025-04-26 05:48:56 -04:00
parent 295da91a77
commit 0e7b6a4634
4 changed files with 2 additions and 49 deletions

View File

@ -1,33 +0,0 @@
name: Build Hugo Docker Image
on:
push:
paths:
- ".gitea/workflows/1_build_hugo_image.yml"
jobs:
build docker:
runs-on: linux_amd
steps:
- name: checkout code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker registry
uses: docker/login-action@v3
with:
registry: git.d3vyce.fr
username: ${{ github.actor }}
password: ${{ secrets.GIT_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
build-args:
HUGO_VERSION=v0.145.0
file: ./hugo.Dockerfile
platforms: linux/amd64
push: true
tags: git.d3vyce.fr/d3vyce/hugo:latest

View File

@ -34,8 +34,6 @@ jobs:
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
with: with:
context: . context: .
build-args:
BLOWFISH_VERSION=v2.84.0
file: ./Dockerfile file: ./Dockerfile
platforms: linux/amd64 platforms: linux/amd64
push: true push: true

View File

@ -1,5 +1,5 @@
# Build Stage # Build Stage
FROM git.d3vyce.fr/d3vyce/hugo:latest AS build FROM hugomods/hugo:0.145.0 AS build
ARG BLOWFISH_VERSION ARG BLOWFISH_VERSION
@ -7,7 +7,7 @@ WORKDIR /opt/blog
COPY . /opt/blog/ COPY . /opt/blog/
RUN git submodule update --init --recursive && \ RUN git submodule update --init --recursive && \
git -C themes/blowfish/ checkout ${BLOWFISH_VERSION} git -C themes/blowfish/ checkout v2.84.0
RUN hugo RUN hugo
# Publish Stage # Publish Stage

View File

@ -1,12 +0,0 @@
FROM golang:1.24-alpine AS build
ARG HUGO_VERSION
ARG CGO=1
ENV CGO_ENABLED=${CGO}
ENV GOOS=linux
ENV GO111MODULE=on
RUN apk update && \
apk add --no-cache gcc musl-dev g++ git
RUN go install -tags extended github.com/gohugoio/hugo@${HUGO_VERSION}