-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix nightly builds of ShardingSphere Proxy Native
- Loading branch information
1 parent
88d04ad
commit 71ce2f2
Showing
6 changed files
with
26 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,21 +15,17 @@ | |
# limitations under the License. | ||
# | ||
|
||
FROM busybox AS prepare | ||
|
||
RUN mkdir -p /conf/ | ||
|
||
FROM oraclelinux:9-slim | ||
|
||
MAINTAINER ShardingSphere "[email protected]" | ||
|
||
ENV LOCAL_PATH /opt/shardingsphere-proxy-native | ||
|
||
bash <(curl -sL https://get.graalvm.org/jdk) -c espresso graalvm-ce-java17-22.3.1 | ||
ARG APP_NAME | ||
|
||
COPY --from=prepare /conf/ ${LOCAL_PATH}/conf | ||
ENV LOCAL_PATH /opt/shardingsphere-proxy-native | ||
|
||
ARG APP_NAME | ||
RUN mkdir -p ${LOCAL_PATH}/conf && \ | ||
microdnf install gzip -y && \ | ||
bash <(curl -sL https://get.graalvm.org/jdk) -c espresso graalvm-ce-java17-22.3.1 | ||
|
||
ADD target/${APP_NAME} ${LOCAL_PATH}/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters