feat: 0002 rendered
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
This commit is contained in:
parent
9382527d0e
commit
209444a343
1 changed files with 11 additions and 5 deletions
16
Dockerfile
16
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 <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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue