15 lines
216 B
Docker
15 lines
216 B
Docker
FROM node:13.14.0-alpine
|
|
|
|
#Dependencies
|
|
RUN apk add --virtual .build-deps python make g++ gcc
|
|
|
|
RUN npm install -g create-react-app
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY / /usr/src/app/
|
|
|
|
RUN npm install
|
|
|
|
CMD [ "npm", "start" ]
|