mirror of
https://github.com/cupcakearmy/dvb.git
synced 2024-11-05 17:14:11 +01:00
8 lines
106 B
Plaintext
8 lines
106 B
Plaintext
|
FROM node:alpine
|
||
|
|
||
|
WORKDIR /app
|
||
|
USER nobody
|
||
|
COPY ./app.js ./.key ./
|
||
|
|
||
|
ENTRYPOINT [ "node" ]
|
||
|
CMD [ "app.js" ]
|