docker fix for source image

This commit is contained in:
Jonathan Shook 2021-12-22 22:15:23 -06:00
parent 1eb1405ad2
commit 3eb7a61824
3 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
FROM adoptopenjdk/openjdk17:alpine-slim
FROM eclipse-temurin:17-alpine
RUN apk --no-cache add curl
COPY nb/target/nb.jar nb.jar

View File

@ -1 +1,2 @@
- 13aff392b (HEAD -> j17-preview) update docker to j17
- 1eb1405ad (HEAD -> j17-preview, origin/j17-preview) update with docker at j17
- 13aff392b update docker to j17

View File

@ -2,9 +2,9 @@
set -e
#RELEASE_NOTES_FILE=${RELEASE_NOTES_FILE:?RELEASE_NOTES_FILE must be provided}
git log --oneline --decorate --max-count=1000 main > /tmp/gitlog_main
git log --oneline --decorate --max-count=1000 > /tmp/gitlog.txt
readarray lines < /tmp/gitlog_main
readarray lines < /tmp/gitlog.txt
for line in "${lines[@]}"
do
if [[ $line =~ \(tag:\ nosqlbench-[0-9]+\.[0-9]+\.[0-9]+\).+ ]]