Initial Commit
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal file
@ -0,0 +1,12 @@
|
||||
FROM node:13.14.0-alpine
|
||||
|
||||
#Dependencies
|
||||
RUN apk add --virtual .build-deps python make g++ gcc
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
COPY / /usr/src/app/
|
||||
|
||||
RUN npm install
|
||||
|
||||
CMD [ "npm", "start" ]
|
Reference in New Issue
Block a user