Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdavis0351 authored Feb 25, 2022
1 parent a750f47 commit c2e1064
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions demo-app/web-app/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM node:latest

WORKDIR /usr/src/app

EXPOSE 3000

COPY . .

RUN npm ci

ENTRYPOINT ["npm", "start"]

0 comments on commit c2e1064

Please sign in to comment.