26 lines
1.1 KiB
Docker
26 lines
1.1 KiB
Docker
FROM node:22-alpine@sha256:c610fcdfb1d5b4740dd70c284ed3cb16bb857e0f7166196e36a5501df7a3aa32 AS build
|
|
WORKDIR /app
|
|
COPY package.json package-lock.json tsconfig.json vite.config.ts index.html ./
|
|
RUN npm ci --no-audit --no-fund
|
|
COPY public ./public
|
|
COPY src ./src
|
|
# Vite inlines VITE_* variables at build time; leave empty (default) so the SPA talks to
|
|
# the same origin and nginx proxies /api to the backend.
|
|
ARG VITE_API_BASE_URL=""
|
|
ENV VITE_API_BASE_URL=$VITE_API_BASE_URL
|
|
RUN npm run build
|
|
|
|
FROM nginx:1.30.4-alpine@sha256:97d490c12ba55b4946b01546d1c3ed324e8d41ab1c9fcb2a616aa470620e5b46
|
|
# The pinned upstream image can lag Alpine security rebuilds. Apply the current
|
|
# fixes from its pinned Alpine release before shipping the runtime image.
|
|
RUN apk upgrade --no-cache
|
|
ARG VCS_REF=development
|
|
ARG BUILD_DATE=unknown
|
|
LABEL org.opencontainers.image.title="Fleet Ops Web" \
|
|
org.opencontainers.image.revision="$VCS_REF" \
|
|
org.opencontainers.image.created="$BUILD_DATE" \
|
|
org.opencontainers.image.source="https://fleetops.itworx.tech"
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
EXPOSE 80
|