Browse Source

Update Dockerfile

pull/14/head
Abheek D 3 years ago
committed by GitHub
parent
commit
a4f7b673a2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      Dockerfile

14
Dockerfile

@ -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…
Cancel
Save