-
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.
Simplify the use of Agent's Docker Image
- Loading branch information
1 parent
f323f7b
commit 8de975c
Showing
4 changed files
with
17 additions
and
19 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 |
---|---|---|
|
@@ -14,7 +14,9 @@ | |
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
FROM eclipse-temurin:22-jdk | ||
FROM eclipse-temurin:23-jdk | ||
LABEL org.opencontainers.image.authors="ShardingSphere [email protected]" | ||
ARG APP_NAME | ||
ADD target/${APP_NAME} /usr | ||
ARG DIRECTORY_NAME | ||
ARG JAR_NAME | ||
ADD target/${DIRECTORY_NAME} /usr | ||
RUN mv /usr/agent/${JAR_NAME} /usr/agent/shardingsphere-agent.jar |
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