-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b0d2379
commit b5fb099
Showing
2 changed files
with
20 additions
and
3 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 |
---|---|---|
|
@@ -4,9 +4,7 @@ LABEL maintainer="[email protected]" | |
LABEL description="iRODS Metadata Template REST endpoint" | ||
ADD runit.sh / | ||
|
||
ADD metadata-template-rest.jar / | ||
ADD target/metadata-template-rest.jar / | ||
CMD ["/runit.sh"] | ||
|
||
|
||
|
||
# build: docker build -t diceunc/metadata-template-rest:latest . |
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 |
---|---|---|
@@ -1,2 +1,21 @@ | ||
# irods-ext-metadata-template-service | ||
irods-ext based metadata template service | ||
|
||
|
||
|
||
### Building | ||
|
||
This is a spring boot application run as a single executable jar, therefore, to build for docker packaging, run | ||
|
||
``` | ||
mvn package spring-boot:repackage | ||
``` | ||
|
||
The docker image can be build using the provided Dockerfile at the root of this repo using a command such as | ||
|
||
``` | ||
docker build -t diceunc/metadata-template-rest:latest . | ||
``` | ||
|