diff --git a/Dockerfile b/Dockerfile index 67156d5..62455fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,16 +6,22 @@ RUN set -ex \ unzip \ wget \ && wget https://github.com/hakimel/reveal.js/archive/refs/tags/4.1.0.zip \ - && unzip 4.1.0.zip + && unzip 4.1.0.zip \ + && cp -r /reveal.js-4.1.0 /reveal.js-4.1.0-1 \ + && cp -r /reveal.js-4.1.0 /reveal.js-4.1.0-2 -COPY 0001-intro/index.html /reveal.js-4.1.0 -COPY 0001-intro/images /reveal.js-4.1.0/images +COPY 0001-intro/index.html /reveal.js-4.1.0-1 +COPY 0001-intro/images /reveal.js-4.1.0-1/images + +COPY 0002-containers/index.html /reveal.js-4.1.0-2 +COPY 0002-containers/images /reveal.js-4.1.0-2/images # ========== END OF BUILDER ========== # FROM nginx:alpine -MAINTAINER "Ameya Shenoy " +LABEL maintainer "Ameya Shenoy " -COPY --from=builder /reveal.js-4.1.0 /usr/share/nginx/html/0001-intro +COPY --from=builder /reveal.js-4.1.0-1 /usr/share/nginx/html/0001-intro +COPY --from=builder /reveal.js-4.1.0-2 /usr/share/nginx/html/0002-containers