Skip to content
Snippets Groups Projects
Commit 57458d78 authored by Helmut Hutzler's avatar Helmut Hutzler
Browse files

Adding Dockerfile

parent 9f6d3f8e
Branches
No related tags found
No related merge requests found
Pipeline #8995 failed
FROM node:12.13.1 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/oidc-autologin /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/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment