mirror of
https://github.com/cupcakearmy/dvb.git
synced 2024-12-22 16:16:26 +00: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" ] |