Go to file
Paolo Asperti 904888ddd3
initial commit
2022-10-02 16:55:45 +02:00
.drone.yml initial commit 2022-10-02 16:55:45 +02:00
Dockerfile initial commit 2022-10-02 16:55:45 +02:00
LICENSE initial commit 2022-10-02 16:55:45 +02:00
README.md initial commit 2022-10-02 16:55:45 +02:00
manifest.tmpl initial commit 2022-10-02 16:55:45 +02:00

README.md

docker-hugo

Build Status

Simple container for hugo development

build

docker build . -t docker.asperti.com/paspo/hugo

run

Version check:

docker run --rm -ti docker.asperti.com/paspo/hugo version

Build hugo website:

docker run --rm -ti \
  -v "$PWD:/src" docker.asperti.com/paspo/hugo -s /src --gc --minify

drone plugin

---
kind: pipeline
type: docker
name: deploy

steps:
  - name: build hugo
    image: docker.asperti.com/paspo/hugo:latest
    pull: always
    commands:
      - "hugo -s /drone/src --gc --minify"