Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Commit

Permalink
Task fix docker image (#1978)
Browse files Browse the repository at this point in the history
* adding direct version on the docker build

* fixing docker image

* removing extra file on the release

* removing that extra file from the build

* removing conflict
  • Loading branch information
paganotoni committed Apr 21, 2020
1 parent 6a7b6f0 commit 421c261
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ changelog:
exclude:
- '^docs:'
- '^test:'
release:
extra_files:
- glob: ./dist/buffalo_Linux_x86_64.tar.gz
brews:
-
name: 'buffalo'
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ RUN npm install -g --no-progress yarn \
RUN curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.24.0

# Pulling docker binary from releases
RUN wget https://github.com/gobuffalo/buffalo/releases/download/v0.16.7/buffalo_0.16.7_Linux_x86_64.tar.gz \
&& tar -xzf buffalo_0.16.7_Linux_x86_64.tar.gz \
RUN wget https://github.com/gobuffalo/buffalo/releases/download/v0.16.8/buffalo_0.16.8_Linux_x86_64.tar.gz \
&& tar -xzf buffalo_0.16.8_Linux_x86_64.tar.gz \
&& mv buffalo $(go env GOPATH)/bin/buffalo

RUN buffalo plugins install github.com/gobuffalo/buffalo-pop/v2
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.slim.build
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ RUN npm i -g --no-progress yarn \
&& yarn config set yarn-offline-mirror-pruning true

# Pulling docker binary from releases
RUN wget https://github.com/gobuffalo/buffalo/releases/download/v0.16.7/buffalo_0.16.7_Linux_x86_64.tar.gz \
&& tar -xzf buffalo_0.16.7_Linux_x86_64.tar.gz \
RUN wget https://github.com/gobuffalo/buffalo/releases/download/v0.16.8/buffalo_0.16.8_Linux_x86_64.tar.gz \
&& tar -xzf buffalo_0.16.8_Linux_x86_64.tar.gz \
&& mv buffalo $(go env GOPATH)/bin/buffalo

RUN buffalo plugins install github.com/gobuffalo/buffalo-pop/v2
Expand Down
2 changes: 1 addition & 1 deletion runtime/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package runtime

// Version is the current version of the buffalo binary
var Version = "v0.16.7"
var Version = "v0.16.8"

0 comments on commit 421c261

Please sign in to comment.