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

Commit

Permalink
Resolve bug messages not been sent to slack
Browse files Browse the repository at this point in the history
  • Loading branch information
olegs-codefresh authored Oct 12, 2017
2 parents 8fa69b7 + 4708e91 commit eddb539
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
kube-watch
dist
dist
src/
pkg/
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
FROM golang:latest as builder
RUN mkdir -p /go/src/github.com/olsynt/kube-event-watcher
WORKDIR /go/src/github.com/olsynt/kube-event-watcher
RUN mkdir -p /go/src/github.com/codefresh-io/kube-watch
WORKDIR /go/src/github.com/codefresh-io/kube-watch
COPY . .
RUN "./scripts/BUILD.sh"


FROM alpine:3.6

COPY --from=builder /go/src/github.com/olsynt/kube-event-watcher/dist/bin/kube-watch /usr/bin/kube-watch
RUN apk add --no-cache ca-certificates

COPY --from=builder /go/src/github.com/codefresh-io/kube-watch/dist/bin/kube-watch /usr/bin/kube-watch
ENV PATH $PATH:/usr/bin/kube-watch
ENTRYPOINT ["kube-watch"]

Expand Down
2 changes: 1 addition & 1 deletion Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
- run
- --in-cluster
# And all flags passed to `kube-watch run` command
image: codefresh/kubewatch:command-start
image: codefresh/kubewatch:master
imagePullPolicy: Always
name: kube-watch
```
Expand Down

0 comments on commit eddb539

Please sign in to comment.