kilogramm/frontend/Dockerfile

6 lines
78 B
Docker

FROM node as build
COPY . /app
WORKDIR /app
RUN npm install
CMD npm run watch