mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-06-06 21:23:14 +00:00
Fix dockerfile
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
FROM node:16-alpine AS builder
|
||||
WORKDIR /app
|
||||
COPY .yarn ./.yarn
|
||||
COPY .yarnrc.yml ./
|
||||
COPY package.json yarn.lock ./
|
||||
COPY apps/web/package.json apps/web/package.json
|
||||
COPY apps/mobile/package.json apps/mobile/package.json
|
||||
COPY packages/ui/package.json packages/ui/package.json
|
||||
RUN yarn --immutable
|
||||
|
||||
EXPOSE 3000
|
||||
EXPOSE 19000
|
||||
CMD ["yarn", "dev"]
|
||||
Reference in New Issue
Block a user