Files
caperren-com/Dockerfile
Corwin Perren 88dcc6e290
All checks were successful
Build and Test / build_and_push (push) Successful in 1m3s
Build and Test / test (push) Successful in 1s
Use apache for static serving
2025-03-07 23:35:24 -08:00

22 lines
630 B
Docker

FROM docker.io/node:lts AS base
WORKDIR /app
# By copying only the package.json and package-lock.json here, we ensure that the following `-deps` steps are independent of the source code.
# Therefore, the `-deps` steps will be skipped if only the source code changes.
COPY package.json package-lock.json ./
FROM base AS prod-deps
RUN npm install --omit=dev
FROM base AS build-deps
RUN npm install
FROM build-deps AS build
COPY . .
RUN npm run build
FROM httpd:latest AS runtime
COPY --from=prod-deps /app/node_modules /usr/local/apache2/htdocs/node_modules
COPY --from=build /app/dist /usr/local/apache2/htdocs/dist
EXPOSE 80