Tom Willemse
f58fe670d9
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.
3 lines
73 B
Docker
3 lines
73 B
Docker
FROM alpine:3.12
|
|
|
|
RUN apk add --no-cache make npm && npm -g install less
|