1
0
stopwatch/Dockerfile
2021-01-04 15:54:04 +02:00

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" ]