Skip to content

Commit a63b291

Browse files
committed
Fix bugs in dockerfiles
1 parent b702277 commit a63b291

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docker/theta-sts-cli.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN mkdir theta
77
COPY . theta
88
WORKDIR theta
99
RUN ./gradlew theta-sts-cli:build && \
10-
mv theta/subprojects/sts-cli/build/libs/theta-sts-cli-*-all.jar ../theta-sts-cli.jar
10+
mv subprojects/sts-cli/build/libs/theta-sts-cli-*-all.jar ../theta-sts-cli.jar
1111
WORKDIR ..
1212

1313
ENV LD_LIBRARY_PATH="$LD_LIBRARY_PATH:./theta/lib/"

docker/theta-xta-cli.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ RUN apt-get update && \
66
RUN mkdir theta
77
COPY . theta
88
WORKDIR theta
9-
./gradlew theta-xta-cli:build && \
10-
mv theta/subprojects/xta-cli/build/libs/theta-xta-cli-*-all.jar ../theta-xta-cli.jar
9+
RUN ./gradlew theta-xta-cli:build && \
10+
mv subprojects/xta-cli/build/libs/theta-xta-cli-*-all.jar ../theta-xta-cli.jar
1111
WORKDIR ..
1212

1313
ENV LD_LIBRARY_PATH="$LD_LIBRARY_PATH:./theta/lib/"

0 commit comments

Comments
 (0)