revealjs-sync/Dockerfile
Sean Cross 29f8158821 docker: add minimum Dockerfile
Signed-off-by: Sean Cross <sean@xobs.io>
2019-01-12 13:53:46 +08:00

8 lines
78 B
Docker

FROM node:8
COPY . /img
WORKDIR /img
RUN npm i
EXPOSE 9119
CMD node index.js