initial commit
This commit is contained in:
10
dev/tekton/examples/example-bank/bank-user-cleanup-utility/Dockerfile
Executable file
10
dev/tekton/examples/example-bank/bank-user-cleanup-utility/Dockerfile
Executable file
@@ -0,0 +1,10 @@
|
||||
FROM adoptopenjdk:8-jre-openj9
|
||||
|
||||
USER root
|
||||
RUN apt-get update && apt-get upgrade -y e2fsprogs libgnutls30 libgcrypt20 libsasl2-2
|
||||
RUN mkdir -p /opt/app/lib
|
||||
USER 1001
|
||||
|
||||
COPY target/user-cleanup-utility-1.0-SNAPSHOT.jar /opt/app
|
||||
COPY target/lib/* /opt/app/lib/
|
||||
CMD ["java", "-jar", "/opt/app/user-cleanup-utility-1.0-SNAPSHOT.jar"]
|
||||
Reference in New Issue
Block a user