FROM alpine as builder RUN set -ex \ && apk add --no-cache \ unzip \ wget \ && wget https://github.com/hakimel/reveal.js/archive/refs/tags/4.1.0.zip \ && unzip 4.1.0.zip COPY 0001-intro/index.html /reveal.js-4.1.0 # ========== END OF BUILDER ========== # FROM nginx:alpine MAINTAINER "Ameya Shenoy " COPY --from=builder /reveal.js-4.1.0 /usr/share/nginx/html/0001-intro