Files
swiss-client/Dockerfile
Michel ten Voorde ae1a30da29
Some checks failed
Gitea/swiss-client/pipeline/head There was a failure building this commit
Update angular to 20
2025-08-09 21:05:58 +02:00

17 lines
390 B
Docker

FROM node:22.18.0-alpine3.22 as build
WORKDIR /app/src
COPY package*.json ./
RUN apk update
RUN apk add yarn
RUN yarn install --frozen-lockfile --no-progress
COPY . ./
RUN yarn build
FROM node:22.18.0-alpine3.22
RUN addgroup -S k8s-group && adduser -S k8s-user -G k8s-group
USER root
WORKDIR /usr/app
COPY --from=build /app/src/dist/swiss-client/ ./
CMD node server/server.mjs
EXPOSE 4000