diff --git a/.woodpecker.yml b/.woodpecker.yml index 1636ae8..a2db03d 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -11,4 +11,17 @@ pipeline: username: from_secret: docker_username dockerfile: ./Container/kontify/Dockerfile - context: ./Container//kontify \ No newline at end of file + context: ./Container/kontify + docker-buildx-hugo: + image: woodpeckerci/plugin-docker-buildx + settings: + platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm64/v8 + repo: git.mertens.digital/heri410/hugo + registry: git.mertens.digital + tags: latest + password: + from_secret: docker_password + username: + from_secret: docker_username + dockerfile: ./Container/hugo/Dockerfile + context: ./Container/hugo \ No newline at end of file diff --git a/Container/hugo/Dockerfile b/Container/hugo/Dockerfile new file mode 100644 index 0000000..7fbadb8 --- /dev/null +++ b/Container/hugo/Dockerfile @@ -0,0 +1,6 @@ +FROM debian +RUN apt-get update && apt-get upgrade -y && apt-get install -y \ + git \ + hugo \ + ncftp \ + rsync \ No newline at end of file