Create Dockerfile

This commit is contained in:
Oleksandr Butenko 2021-06-13 14:27:08 +03:00 committed by GitHub
parent 732770e625
commit ac2d8eb152
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM node:ubuntu
WORKDIR /usr/src/app
COPY package*.jar ./
RUN npm install
COPY . .
EXPOSE 8080
CMD [ "npm", "start" ]