mirror of
https://github.com/silenty4ng/k5web
synced 2025-01-09 13:24:38 +00:00
18 lines
263 B
Text
18 lines
263 B
Text
|
FROM node:22
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY yarn.lock package.json ./
|
||
|
|
||
|
RUN npm config set registry https://registry.npmmirror.com
|
||
|
|
||
|
RUN yarn config set registry https://registry.npmmirror.com
|
||
|
|
||
|
RUN yarn install
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
EXPOSE 5173
|
||
|
|
||
|
CMD ["yarn", "dev", "--host", "0.0.0.0"]
|