This commit is contained in:
Henri Burau
2020-03-24 21:55:06 +01:00
parent a34021111f
commit 16843614e8
3 changed files with 59 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM node:alpine
WORKDIR /home/slides
RUN npm install -g @marp-team/marp-cli
ADD *.md /home/slides/
EXPOSE 8080
CMD ["marp", "-s", "."]