simple Dockerfile

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

24
.dockerignore Normal file
View File

@ -0,0 +1,24 @@
**/.classpath
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/azds.yaml
**/charts
**/docker-compose*
**/compose*
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
README.md

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