Dockerfile, formatter and peertube embed

This commit is contained in:
Luke Murphy
2020-11-25 09:02:37 +01:00
parent 3b06ef7dfc
commit 0e1208760c
5 changed files with 1663 additions and 822 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM node:alpine
EXPOSE 8081
COPY ./docs /app
WORKDIR /app
RUN npm install http-server
CMD ["npm", "start"]