Skip to content

Commit

Permalink
Release: v0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
beeceej committed Oct 2, 2020
1 parent 003ca05 commit ba08e92
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM beeceej/lgtm:v0.0.8
ENTRYPOINT [ "bin/lgtm" ]
FROM beeceej/lgtm:v0.0.9
ENTRYPOINT [ "/bin/lgtm" ]
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
USER := beeceej
IMAGE := lgtm
VERSION := v0.0.8
VERSION := v0.0.9
REPOSITORY:= $(USER)/$(IMAGE):$(VERSION)


Expand All @@ -19,4 +19,8 @@ Dockerfile:
clean:
rm Dockerfile

git-release:
git tag -a "$(VERSION)" -m "release $(VERSION)"
git push --tags

release: clean build push Dockerfile
4 changes: 2 additions & 2 deletions bin/generate_dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

readonly dockerfile=$(cat <<EOF
FROM beeceej/lgtm:VERSION
ENTRYPOINT [ "bin/lgtm" ]
ENTRYPOINT [ "/bin/lgtm" ]
EOF
)
readonly version="$1"
echo "${dockerfile/VERSION/$version}" > Dockerfile
echo "${dockerfile/VERSION/$version}" > Dockerfile

0 comments on commit ba08e92

Please sign in to comment.