We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8521392 commit 0e8ab63Copy full SHA for 0e8ab63
docker/Dockerfile
@@ -1,12 +1,14 @@
1
FROM eclipse-temurin:21-jdk-alpine
2
WORKDIR /server
3
4
-CMD ["/bin/bash", "bin/log-http-proxy"]
+CMD ["/bin/bash", "bin/log-http-proxy", "-Dconfig.file=/server/config/application.conf"]
5
6
7
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
8
&& echo "Asia/Shanghai" > /etc/timezone
9
10
RUN apk update && apk add --no-cache bash
11
12
+COPY ./src/main/resources/application.conf /server/config/
13
+
14
COPY ./target/universal/stage/ /server/
0 commit comments