Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
Indexer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSDU
OSDU Data Platform
System
Indexer
Commits
72dca22f
Commit
72dca22f
authored
4 months ago
by
Eugene Xiang
Browse files
Options
Downloads
Patches
Plain Diff
Add USER in Dockerfile
parent
5e6538db
No related branches found
No related tags found
1 merge request
!842
Add USER in Dockerfile
Pipeline
#292580
failed
4 months ago
Stage: review
Stage: build
Stage: coverage
Stage: containerize
Stage: scan
Stage: deploy
Stage: integration
Stage: acceptance
Stage: publish
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
provider/indexer-aws/build-aws/Dockerfile
+5
-1
5 additions, 1 deletion
provider/indexer-aws/build-aws/Dockerfile
with
5 additions
and
1 deletion
provider/indexer-aws/build-aws/Dockerfile
+
5
−
1
View file @
72dca22f
...
...
@@ -15,7 +15,10 @@
# https://docs.spring.io/spring-boot/docs/current/reference/html/deployment.html
FROM
public.ecr.aws/amazoncorretto/amazoncorretto:17
RUN
yum update
-y
RUN
yum update
-y
&&
yum
install
-y
shadow-utils
RUN
groupadd
-g
10001
-r
appgroup
\
&&
useradd
-M
-g
10001
-r
-u
10001 appuser
ARG
JAR_FILE=provider/indexer-aws/target/*spring-boot.jar
...
...
@@ -25,4 +28,5 @@ COPY ${JAR_FILE} app.jar
COPY
/provider/indexer-aws/build-aws/entrypoint.sh /entrypoint.sh
EXPOSE
8080
USER
10001:10001
ENTRYPOINT
["/bin/sh", "-c", ". /entrypoint.sh"]
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