mirror of
https://github.com/vexorian/dizquetv.git
synced 2025-12-10 00:28:08 -06:00
6 lines
196 B
Plaintext
6 lines
196 B
Plaintext
FROM node:14-alpine3.14
|
|
WORKDIR /home/node/app
|
|
COPY package*.json ./
|
|
RUN npm install && npm install -g browserify nexe@3.3.7
|
|
COPY --from=vexorian/dizquetv:nexecache /var/nexe/* /var/nexe/
|
|
COPY . . |