martin/demo/frontend/Dockerfile
Yuri Astrakhan 6d17c1e2b6
Demo: Migrate to yarn (#770)
`npm install` is having some weird issues, while `yarn` seem to work
well. Also, bumped almost all dependencies.
2023-07-17 14:27:09 -04:00

11 lines
137 B
Docker

FROM node:20-alpine as builder
WORKDIR /usr/src/app
COPY package.json .
COPY yarn.lock .
RUN yarn install
COPY . .
CMD yarn run build