Add Dockerfile
Signed-off-by: William Brawner <me@wbrawner.com>
This commit is contained in:
parent
18c925b327
commit
a0849ba3c2
1 changed files with 11 additions and 0 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
FROM node:lts
|
||||
|
||||
RUN mkdir /app
|
||||
WORKDIR /app
|
||||
COPY src src
|
||||
COPY package.json package.json
|
||||
COPY package-lock.json package-lock.json
|
||||
RUN npm install
|
||||
EXPOSE 3000
|
||||
ENTRYPOINT npm run-script start
|
||||
|
Loading…
Reference in a new issue