mirror of
https://github.com/silenty4ng/k5web
synced 2025-01-07 20:33:28 +00:00
cf0e455007
deploy static file into nginx image
17 lines
194 B
Docker
17 lines
194 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 dist/ /usr/share/nginx/html/
|
|
|
|
EXPOSE 80
|