From f58fe670d932f3dc05df73bad9abc0dcb58fe4f4 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 9 Oct 2020 23:07:55 -0700 Subject: Run stages using different container images The Build/HTML stage needs the Emacs image because it uses Emacs to convert the org files into html files. The Build/CSS stage runs in an image defined by the Dockerfile in this repository, installing just make, npm, and lessc to convert the less files into CSS files. And the Deploy step needs to upload using rsync overs ssh. --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 0b18c08..030869c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,3 @@ -FROM silex/emacs:27.1-alpine-dev +FROM alpine:3.12 -RUN git clone https://github.com/cask/cask.git /usr/local/cask -ENV PATH="/usr/local/cask/bin:$PATH" -RUN cask upgrade-cask +RUN apk add --no-cache make npm && npm -g install less -- cgit v1.2.3-54-g00ecf