Skip to content

Commit

Permalink
Fix bugs in dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
hajduakos committed Aug 11, 2020
1 parent b702277 commit a63b291
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/theta-sts-cli.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN mkdir theta
COPY . theta
WORKDIR theta
RUN ./gradlew theta-sts-cli:build && \
mv theta/subprojects/sts-cli/build/libs/theta-sts-cli-*-all.jar ../theta-sts-cli.jar
mv subprojects/sts-cli/build/libs/theta-sts-cli-*-all.jar ../theta-sts-cli.jar
WORKDIR ..

ENV LD_LIBRARY_PATH="$LD_LIBRARY_PATH:./theta/lib/"
Expand Down
4 changes: 2 additions & 2 deletions docker/theta-xta-cli.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ RUN apt-get update && \
RUN mkdir theta
COPY . theta
WORKDIR theta
./gradlew theta-xta-cli:build && \
mv theta/subprojects/xta-cli/build/libs/theta-xta-cli-*-all.jar ../theta-xta-cli.jar
RUN ./gradlew theta-xta-cli:build && \
mv subprojects/xta-cli/build/libs/theta-xta-cli-*-all.jar ../theta-xta-cli.jar
WORKDIR ..

ENV LD_LIBRARY_PATH="$LD_LIBRARY_PATH:./theta/lib/"
Expand Down

0 comments on commit a63b291

Please sign in to comment.