Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
angular-oidc-authorization-sample
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Helmut Hutzler
angular-oidc-authorization-sample
Commits
57458d78
Commit
57458d78
authored
2 years ago
by
Helmut Hutzler
Browse files
Options
Downloads
Patches
Plain Diff
Adding Dockerfile
parent
9f6d3f8e
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#8995
failed
2 years ago
Stage: build
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+17
-0
17 additions, 0 deletions
Dockerfile
with
17 additions
and
0 deletions
Dockerfile
0 → 100644
+
17
−
0
View file @
57458d78
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/
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment