Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Docker Token Portal
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
Container 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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
702
Provoz
gss
Docker Token Portal
Commits
c7574d8b
Commit
c7574d8b
authored
Apr 13, 2023
by
Mgr. Pavel Břoušek
Browse files
Options
Downloads
Patches
Plain Diff
fix: extract zip file
parent
49a522f4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Dockerfile
+13
-3
13 additions, 3 deletions
Dockerfile
config.php
+0
-0
0 additions, 0 deletions
config.php
with
13 additions
and
3 deletions
Dockerfile
+
13
−
3
View file @
c7574d8b
...
...
@@ -11,8 +11,18 @@ ARG TOKEN_PORTAL_VERSION
ARG
DEBIAN_FRONTEND=noninteractive
ADD
https://github.com/rciam/simple-oidc-client-php/releases/download/v${TOKEN_PORTAL_VERSION}/simple-oidc-client-php-v${TOKEN_PORTAL_VERSION}.zip /var/www/html/
COPY
config.php /var/www/html/
EXPOSE
9000
WORKDIR
/var/www/html
RUN
apt update
-y
&&
\
apt
install
-y
--no-install-recommends
unzip
&&
\
unzip
'*.zip'
&&
\
rm
*
.zip
&&
\
apt-get remove
-y
unzip
&&
\
apt-get autoremove
&&
\
apt-get clean
&&
\
rm
-rf
/var/lib/apt/lists/
*
&&
\
mv
simple-oidc-client-php/
*
.
&&
\
rm
-rf
simple-oidc-client-php
EXPOSE
9000
This diff is collapsed.
Click to expand it.
config.php
deleted
100644 → 0
+
0
−
0
View file @
49a522f4
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