blackbirdchess-docker-dev/react/Dockerfile

11 lines
140 B
Docker
Raw Normal View History

2020-11-16 17:14:34 +01:00
FROM node:10
WORKDIR /usr/src/app/react
COPY package*.json ./
RUN npm install node-sass && npm install
EXPOSE 3000
CMD ["npm", "start"]