Skip to content
Snippets Groups Projects
Select Git revision
  • 05bc541276192c9f1bbe82ea9989872d5f25f49c
  • master default protected
2 results

subadmin.php

Blame
  • Dockerfile 486 B
    FROM node:16.10 as builder
    ADD package.json package-lock.json /build/
    WORKDIR /build
    RUN npm install
    ADD . /build
    #RUN npm run ng build --prod  --progress false --aot --base-href=/client-prod/
    RUN npm run ng build  --progress false --base-href=/
    RUN ls -Rl dist
    RUN pwd
     
    FROM nginx:1.17.6-alpine
    
    COPY --from=builder /build/dist/angular-oidc-authorization-sample/  /usr/share/nginx/html
    RUN ls -l usr/share/nginx/html
    COPY default.conf /etc/nginx/conf.d/
    RUN ls -l /etc/nginx/conf.d/