Skip to content
Snippets Groups Projects
Commit dfba6146 authored by Jiman Kim's avatar Jiman Kim
Browse files

Merge branch 'user-dockerfile' into 'master'

user in dockerfile

See merge request !504
parents 28d72d11 77b1b9a5
Branches lobtimo-fix-cve
No related tags found
1 merge request!504user in dockerfile
Pipeline #293431 failed
......@@ -15,7 +15,9 @@
# 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 \
&& groupadd -g 10001 -r appgroup \
&& useradd -M -g 10001 -r -u 10001 appuser
ARG JAR_FILE=provider/register-aws/target/*spring-boot.jar
# Harcoding this value since Register-core requires this variable. AWS does not use it. Might change in future
......@@ -28,4 +30,5 @@ COPY ${JAR_FILE} app.jar
COPY /provider/register-aws/build-aws/entrypoint.sh /entrypoint.sh
EXPOSE 8080
USER 10001:10001
ENTRYPOINT ["/bin/sh", "-c", ". /entrypoint.sh"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment