feat: 0002 rendered

Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
This commit is contained in:
Ameya Shenoy 2021-08-11 12:07:33 +05:30
parent 9382527d0e
commit 209444a343
Signed by: codingcoffee
GPG key ID: 88174D3C138A243E

View file

@ -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 <shenoy.ameya@gmail.com>"
LABEL maintainer "Ameya Shenoy <shenoy.ameya@gmail.com>"
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