mirror of
https://github.com/naveenrajm7/rpmbuild.git
synced 2025-07-11 20:04:42 +00:00
8 lines
92 B
Docker
8 lines
92 B
Docker
FROM node:slim
|
|
|
|
COPY . .
|
|
|
|
RUN npm install --production
|
|
|
|
ENTRYPOINT ["node", "/lib/main.js"]
|