2021-04-15 18:36:20 +00:00
|
|
|
FROM node:15.14.0-alpine3.12
|
|
|
|
|
|
|
|
|
|
RUN set -ex \
|
|
|
|
|
&& apk add --no-cache \
|
2021-04-15 22:20:06 +00:00
|
|
|
g++ \
|
|
|
|
|
make \
|
|
|
|
|
python2 \
|
2021-04-15 18:36:20 +00:00
|
|
|
unzip \
|
|
|
|
|
wget
|
|
|
|
|
|
|
|
|
|
RUN set -ex \
|
|
|
|
|
&& wget https://github.com/hakimel/reveal.js/archive/refs/tags/4.1.0.zip \
|
|
|
|
|
&& unzip 4.1.0.zip
|
|
|
|
|
|
|
|
|
|
WORKDIR /reveal.js-4.1.0
|
|
|
|
|
|
2021-04-15 22:20:06 +00:00
|
|
|
RUN set -ex \
|
|
|
|
|
&& npm i
|
|
|
|
|
|
|
|
|
|
ENTRYPOINT npm start
|
2021-04-15 18:36:20 +00:00
|
|
|
|