We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c77490 commit a537fdbCopy full SHA for a537fdb
1 file changed
Dockerfile
@@ -16,11 +16,13 @@ RUN mvn -Pprod -DskipTests=true clean package spring-boot:repackage
16
17
FROM eclipse-temurin:25.0.1_8-jre
18
19
+RUN apt-get update && apt-get install -y curl
20
+
21
# expose server port
22
EXPOSE 8080
23
24
# download script for reading Docker secrets
-RUN curl -o /tmp/read-secrets.sh "https://raw.githubusercontent.com/HSLdevcom/jore4-tools/main/docker/read-secrets.sh"
25
+ADD https://raw.githubusercontent.com/HSLdevcom/jore4-tools/main/docker/read-secrets.sh /tmp/read-secrets.sh
26
27
# copy over helper scripts
28
COPY ./script/build-jdbc-urls.sh /tmp/
0 commit comments