selfservice/Dockerfile

10 lines
281 B
Docker
Raw Normal View History

2023-01-30 17:16:25 +00:00
FROM registry.odit.services/hub/library/node:15.9.0-alpine3.13
WORKDIR /app
COPY . .
RUN yarn
RUN yarn build
RUN yarn postbuild
# final image
2023-01-30 17:18:26 +00:00
FROM registry.odit.services/library/nginx-brotli:3.15
COPY --from=0 /app/dist /usr/share/nginx/html
COPY ./nginx.conf /etc/nginx/nginx.conf