Dockerfile for executables builder.

This commit is contained in:
vexorian 2020-08-17 21:32:40 -04:00
parent 389b54cc96
commit 5138ced433

5
Dockerfile-builder Normal file
View File

@ -0,0 +1,5 @@
FROM node:12.18-alpine3.12
WORKDIR /home/node/app
COPY package*.json ./
RUN npm install && npm install -g browserify nexe@3.3.7
COPY . .