Skip to content

Commit

Permalink
Merge pull request #87 from tamada/release/v2.3.19
Browse files Browse the repository at this point in the history
Update version up script for fixing bug: versions in Dockerfile was n…
  • Loading branch information
tamada authored Jul 22, 2021
2 parents 09ed9c3 + c8e81f1 commit 544c3ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/update_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ for i in README.md site/content/install.md ; do
done

for i in $(find dockers -name Dockerfile) ; do
sed "s/ARG version=\"[0-9.]*\"/ARG version=\"${VERSION}\"/g" "$i" > a ; mv a "$i"
sed "s/ARG PochiVersion=\"[0-9.]*\"/ARG PochiVersion=\"${VERSION}\"/g" "$i" > a ; mv a "$i"
done

for i in bin/make_dist.sh bin/build_site.sh bin/build_dockers.sh ; do
Expand Down
2 changes: 1 addition & 1 deletion dockers/pochi-groovysh/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ARG PochiVersion="2.3.1"
ARG GroovyVersion="3.0.8"

LABEL maintainer="Haruaki Tamada" \
pochi-version="${version}" \
pochi-version="${PochiVersion}" \
description="Java birthmarking toolkit."

COPY --from=base /opt/openjdk-11-minimal /opt/openjdk-11-minimal
Expand Down
2 changes: 1 addition & 1 deletion dockers/pochi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ FROM alpine:3.10.1
ARG PochiVersion="2.3.1"

LABEL maintainer="Haruaki Tamada" \
pochi-version="${version}" \
pochi-version="${PochiVersion}" \
description="Java birthmarking toolkit (without interactive mode)."

COPY --from=base /opt/openjdk-11-minimal /opt/openjdk-11-minimal
Expand Down

0 comments on commit 544c3ee

Please sign in to comment.