2021-04-15 18:36:20 +00:00
|
|
|
FROM node:15.14.0-alpine3.12
|
|
|
|
|
|
2022-06-08 07:37:36 +00:00
|
|
|
ENV REVEAL_JS_VERSION=4.1.0
|
|
|
|
|
|
2021-04-15 18:36:20 +00:00
|
|
|
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 \
|
2022-06-08 07:37:36 +00:00
|
|
|
&& wget https://github.com/hakimel/reveal.js/archive/refs/tags/${REVEAL_JS_VERSION}.zip \
|
|
|
|
|
&& unzip ${REVEAL_JS_VERSION}.zip
|
2021-04-15 18:36:20 +00:00
|
|
|
|
2022-06-08 07:37:36 +00:00
|
|
|
WORKDIR "/reveal.js-${REVEAL_JS_VERSION}"
|
2021-04-15 18:36:20 +00:00
|
|
|
|
2021-04-15 22:20:06 +00:00
|
|
|
RUN set -ex \
|
|
|
|
|
&& npm i
|
|
|
|
|
|
|
|
|
|
ENTRYPOINT npm start
|
2021-04-15 18:36:20 +00:00
|
|
|
|