From 56835a645eaea4cbacf189a3069c0161eaa71373 Mon Sep 17 00:00:00 2001 From: Jake Jarvis Date: Thu, 19 Mar 2020 09:52:04 -0400 Subject: [PATCH] Switch base image to node:12-alpine since it's cached https://github.com/actions/virtual-environments/blob/0ddeb1ac4b2e81f45ba752d49ec5825b77141d40/images/linux/scripts/installers/docker-moby.sh#L36 --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 17bc535..7ad4c09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:latest +FROM node:12-alpine ENV HUGO_VERSION 0.67.1 # remove/comment the following line completely to build with vanilla Hugo: @@ -20,7 +20,6 @@ RUN apk update && \ apk add --no-cache \ ca-certificates \ git \ - nodejs \ asciidoctor \ python3 \ py3-pygments \