8 lines
82 B
Docker
8 lines
82 B
Docker
FROM node:12
|
|
|
|
COPY . .
|
|
|
|
RUN npm i --production
|
|
|
|
ENTRYPOINT ["node" , "action.js"]
|