mirror of
https://github.com/cupcakearmy/dvb.git
synced 2025-03-12 16:08:15 +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" ] |