Select Git revision
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Dockerfile 292 B
FROM node:23 AS build
RUN mkdir -p /app
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . /app
RUN npm run build --prod
FROM nginx:alpine
COPY --from=build /app/dist/ej-rest-client/browser/ /usr/share/nginx/html
COPY --from=build /app/nginx-custom.conf /etc/nginx/conf.d/default.conf