simple Dockerfile

This commit is contained in:
2021-03-14 20:26:51 +01:00
parent d728ae37e6
commit f9c050b9f7
2 changed files with 29 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM node:15.11.0-alpine3.13
WORKDIR /app
COPY . .
RUN yarn && cd app && yarn && cd ..
RUN yarn electron:package