Abheek D
3 years ago
committed by
GitHub
1 changed files with 12 additions and 2 deletions
@ -1,3 +1,13 @@ |
|||||
FROM node:latest |
FROM node:latest |
||||
RUN npm i -g awscibo |
|
||||
CMD awscibo |
# Create app directory |
||||
|
WORKDIR /usr/src/app |
||||
|
|
||||
|
# Install deps |
||||
|
COPY package*.json ./ |
||||
|
|
||||
|
RUN npm install |
||||
|
|
||||
|
COPY . . |
||||
|
|
||||
|
CMD [ "node", "index.js" ] |
||||
|
Loading…
Reference in new issue