Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
moncho committed Apr 22, 2018
1 parent 077a151 commit 8cea6b1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion APPVERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9-beta.3
0.9-beta.4
12 changes: 9 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM alpine:latest
# build stage
FROM alpine:latest AS build-phase

LABEL VERSION v0.9-beta.2
LABEL VERSION v0.9-beta.4

RUN set -x && \
apk update && \
Expand All @@ -11,4 +12,9 @@ RUN set -x && \
rm -rf /var/cache/apk/* && \
chmod 755 /usr/local/bin/dry

CMD sleep 1;/usr/local/bin/dry
# final stage
FROM alpine
WORKDIR /app
COPY --from=build-phase /usr/local/bin/dry /app

CMD sleep 1;/app/dry
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ The easiest way to install the latest binaries for Linux and Mac is to run this

If you dont like to **curl | sh**, binaries are provided.

* **darwin** [386](https://github.com/moncho/dry/releases/download/v0.9-beta.3/dry-darwin-386) / [amd64](https://github.com/moncho/dry/releases/download/v0.9-beta.3/dry-darwin-amd64)
* **freebsd** [386](https://github.com/moncho/dry/releases/download/v0.9-beta.3/dry-freebsd-386) / [amd64](https://github.com/moncho/dry/releases/download/v0.9-beta.3/dry-freebsd-amd64)
* **linux** [386](https://github.com/moncho/dry/releases/download/v0.9-beta.3/dry-linux-386) / [amd64](https://github.com/moncho/dry/releases/download/v0.9-beta.3/dry-linux-amd64)
* **windows** [386](https://github.com/moncho/dry/releases/download/v0.9-beta.3/dry-windows-386) / [amd64](https://github.com/moncho/dry/releases/download/v0.9-beta.3/dry-windows-amd64)
* **darwin** [386](https://github.com/moncho/dry/releases/download/v0.9-beta.4/dry-darwin-386) / [amd64](https://github.com/moncho/dry/releases/download/v0.9-beta.4/dry-darwin-amd64)
* **freebsd** [386](https://github.com/moncho/dry/releases/download/v0.9-beta.4/dry-freebsd-386) / [amd64](https://github.com/moncho/dry/releases/download/v0.9-beta.4/dry-freebsd-amd64)
* **linux** [386](https://github.com/moncho/dry/releases/download/v0.9-beta.4/dry-linux-386) / [amd64](https://github.com/moncho/dry/releases/download/v0.9-beta.4/dry-linux-amd64)
* **windows** [386](https://github.com/moncho/dry/releases/download/v0.9-beta.4/dry-windows-386) / [amd64](https://github.com/moncho/dry/releases/download/v0.9-beta.4/dry-windows-amd64)

#### Mac OS X / Homebrew

Expand Down

0 comments on commit 8cea6b1

Please sign in to comment.