Skip to content

Commit

Permalink
Merge pull request #112 from replicatedcom/fix-goreleaser
Browse files Browse the repository at this point in the history
Fix dockerfile binary location && fix .goreleaser.yml to call it
  • Loading branch information
laverya committed Feb 28, 2018
2 parents b0808ce + 8f9e468 commit 95ab3df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,5 @@ dockers:
- image: registry.replicated.com/library/support-bundle
dockerfile: build/Dockerfile-release
latest: true
- image: replicated/support-bundle
dockerfile: build/Dockerfile-release
latest: false
tag_templates:
- "beta"
snapshot:
name_template: SNAPSHOT-{{ .Commit }}
4 changes: 2 additions & 2 deletions build/Dockerfile-release
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM debian:9
FROM debian:stretch-slim
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install --no-install-recommends -y \
sensible-utils \
ca-certificates \
procps \
systemd \
&& rm -rf /var/lib/apt/lists/*
COPY bin/amd64/support-bundle /usr/local/bin/support-bundle
COPY support-bundle /usr/local/bin/support-bundle
ENV IN_CONTAINER 1
LABEL "com.replicated.support-bundle"="true"
ENTRYPOINT [ "support-bundle" ]
Expand Down

0 comments on commit 95ab3df

Please sign in to comment.