add Dockerfile

This commit is contained in:
Sambo Chea 2020-04-17 21:36:49 +07:00
parent 2a990a818a
commit a232794657

11
Dockerfile Normal file
View 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