1
mirror of https://github.com/jakejarvis/hugo-docker.git synced 2025-07-03 09:46:38 -04:00

switch HUGO_VERSION from ENV to ARG to allow for version overriding at build time

This commit is contained in:
2020-07-04 20:16:35 -04:00
parent 216e6f27b7
commit fdabc9b498

View File

@ -2,9 +2,10 @@
# much easier to install Node on the Go base image than vice-versa. # much easier to install Node on the Go base image than vice-versa.
FROM golang:1.14-alpine FROM golang:1.14-alpine
ENV HUGO_VERSION 0.73.0 # the following version can be overridden at image build time with --build-arg
ARG HUGO_VERSION=0.73.0
# remove/comment the following line completely to build with vanilla Hugo: # remove/comment the following line completely to build with vanilla Hugo:
ENV HUGO_EXTENDED 1 ARG HUGO_EXTENDED=1
LABEL "com.github.actions.name"="Hugo Build" LABEL "com.github.actions.name"="Hugo Build"
LABEL "com.github.actions.description"="Hugo as an action, with extended support and legacy versions" LABEL "com.github.actions.description"="Hugo as an action, with extended support and legacy versions"