Backend for Custom Frontend OSPRO Surveyor Indonesia
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# FROM node:8.10-alpine |
|
FROM node:12 |
|
WORKDIR /usr/src/app |
|
COPY package.json ./ |
|
# RUN apt install git python3 |
|
RUN npm install --only=production |
|
RUN npm i react@16.14.0 |
|
RUN npm audit fix |
|
COPY . . |
|
CMD [ "npm", "start" ] |