mirror of
https://github.com/yinxin630/fiora.git
synced 2026-06-04 21:03:18 +08:00
14 lines
188 B
Docker
14 lines
188 B
Docker
FROM node:14
|
|
|
|
WORKDIR /usr/app/fiora
|
|
|
|
COPY packages ./packages
|
|
COPY package.json tsconfig.json yarn.lock lerna.json ./
|
|
RUN touch .env
|
|
|
|
RUN yarn install
|
|
|
|
RUN yarn build:web
|
|
|
|
CMD yarn start
|