Abheek Dhawan
3 years ago
1 changed files with 12 additions and 2 deletions
@ -1,3 +1,13 @@ |
|||
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