mirror of
https://github.com/silenty4ng/k5web
synced 2025-01-04 19:02:58 +00:00
98b56e09e7
fix copy static file
17 lines
217 B
Docker
17 lines
217 B
Docker
FROM node:22 AS build-yarn
|
|
|
|
WORKDIR /app
|
|
|
|
COPY yarn.lock package.json ./
|
|
|
|
RUN yarn install
|
|
|
|
COPY . .
|
|
|
|
RUN yarn build
|
|
|
|
FROM nginx:latest AS runtime
|
|
|
|
COPY --from=build-yarn /app/dist/ /usr/share/nginx/html/
|
|
|
|
EXPOSE 80
|