-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added: Export to Opal only after all files are sent
- Loading branch information
Showing
4 changed files
with
26 additions
and
6 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
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,14 +1,13 @@ | ||
FROM eclipse-temurin:21-jre | ||
|
||
COPY target/exporter.jar /app/ | ||
|
||
WORKDIR /app | ||
|
||
RUN apt-get update && apt-get upgrade -y && apt-get install python3-pip -y && \ | ||
apt-get install libcurl4-openssl-dev libssl-dev -y && \ | ||
python3 -m pip install obiba-opal && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
COPY target/exporter.jar /app/ | ||
|
||
WORKDIR /app | ||
|
||
CMD ["sh", "-c", "java $JAVA_OPTS -jar exporter.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