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

Commit

Permalink
Merge pull request #52 from keptn-contrib/release-0.3.0
Browse files Browse the repository at this point in the history
Release 0.3.0
  • Loading branch information
bacherfl authored Sep 16, 2019
2 parents 8e10609 + 1c05430 commit 603feaa
Show file tree
Hide file tree
Showing 14 changed files with 1,006 additions and 83 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@
# Creds files
deploy/scripts/creds_dt.json
deploy/scripts/*creds*.json
creds_dt.json
creds_dt.json

vendor/*
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ before_install:
- LAST_COMMIT="$(git log -1 --oneline)"
- ./writeManifest.sh
- cat MANIFEST

install:
- go get -u github.com/golang/dep/cmd/dep
- dep ensure

jobs:
include:
- stage: feature/bug
Expand Down
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ FROM golang:1.12 as builder
WORKDIR /go/src/github.com/keptn/dynatrace-service
COPY . .

ARG DEP_VERSION=0.5.3
RUN curl -L -s https://github.com/golang/dep/releases/download/v$DEP_VERSION/dep-linux-amd64 -o ./dep && \
chmod +x ./dep && \
./dep ensure


# Build the command inside the container.
# (You may fetch or manage dependencies here,
# either manually or with a tool like "godep".)
Expand All @@ -20,5 +26,6 @@ RUN apk add --no-cache ca-certificates
# Copy the binary to the production image from the builder stage.
COPY --from=builder /go/src/github.com/keptn/dynatrace-service/dynatrace-service /dynatrace-service
ADD MANIFEST /

# Run the web service on container startup.
CMD ["sh", "-c", "cat MANIFEST && /dynatrace-service"]
Loading

0 comments on commit 603feaa

Please sign in to comment.