1
0
stopwatch/Dockerfile

15 lines
216 B
Docker
Raw Normal View History

2021-01-04 12:16:20 +00:00
FROM node:13.14.0-alpine
#Dependencies
RUN apk add --virtual .build-deps python make g++ gcc
2021-01-04 13:54:04 +00:00
RUN npm install -g create-react-app
2021-01-04 12:16:20 +00:00
WORKDIR /usr/src/app
COPY / /usr/src/app/
RUN npm install
CMD [ "npm", "start" ]