add Dockerfile
This commit is contained in:
parent
2a990a818a
commit
a232794657
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@ -0,0 +1,11 @@
|
||||
FROM node:alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json /app
|
||||
RUN npm install
|
||||
COPY . /app
|
||||
|
||||
CMD node index.js
|
||||
|
||||
EXPOSE 8080
|
Loading…
Reference in New Issue
Block a user