Dockerfile 563 bytes
FROM alpine:latest
# If we need the latest version of revealjs
# RUN wget -O reveal.zip https://github.com/hakimel/reveal.js/archive/master.zip
# RUN unzip reveal.zip -d reveal
# Création d'un dossier public pour stocker notre future présentation
RUN mkdir /public
# Copie des assets nécessaires reveal.js
COPY ./revealjs /public/revealjs
# Copie du fichier index.html modifié (gestion du markdown, et lien vers le fichier css custom)
COPY ./index.html /public/
COPY ./illustrations /public/illustrations
# Copie des styles custom
COPY ./otb.css /public/