diff --git a/Dockerfile b/Dockerfile index b92fd81..38b6b0d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,16 @@ FROM busybox:latest RUN mkdir /app COPY index.html /app +COPY favicon.ico /app +COPY manifest.json /app +COPY pwa.js /app +COPY robots.txt /app COPY css/ /app/css/ COPY images/ /app/images/ COPY videos/ /app/videos/ COPY js/ /app/js/ COPY slides/ /app/slides/ -COPY templates/ /app/templates +COPY templates/ /app/templates/ +COPY appicons/ /app/appicons/ EXPOSE 80 CMD ["httpd", "-f", "-p", "80", "-h", "/app"] diff --git a/README.md b/README.md index 6e162d7..efee11c 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ If you prefer, you can build a Docker image and run the presentation from there. `cd vanillajs-deck` -`docker built -t vanillajs-deck .` +`docker build -t vanillajs-deck .` `docker run --rm -d -p 8080:80 vanillajs-deck`