Added Prettier Action

This commit is contained in:
2020-01-10 10:21:42 +01:00
parent 77da00eba0
commit 69edac17e8
3 changed files with 81 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM node:latest
COPY entrypoint.sh ./entrypoint.sh
COPY package*.json ./
RUN npm install
ENTRYPOINT ["./entrypoint.sh"]