16 lines
441 B
Docker
16 lines
441 B
Docker
FROM node:22-alpine AS build
|
|
WORKDIR /app
|
|
RUN corepack enable
|
|
COPY package.json pnpm-lock.yaml ./
|
|
RUN pnpm install --frozen-lockfile
|
|
COPY . .
|
|
ARG VITE_API_BASE_URL=http://127.0.0.1:8000/api/v1
|
|
ENV VITE_API_BASE_URL=$VITE_API_BASE_URL
|
|
RUN pnpm build
|
|
|
|
FROM nginx:1.27-alpine
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
EXPOSE 80
|
|
HEALTHCHECK CMD wget -qO- http://127.0.0.1/healthz || exit 1
|