This repository has been archived by the owner on Jan 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Milestone 3.0.1 Changes (#135) * Merge pull request #49 in DEV/k8s-argus from bugfix/DEV-59446-deleted-namespaces-are-still-present-on-the-portal to develop * commit 'd0fb53894f1475979f48653c6438318faa3085b0': DEV-59446 delete namespace code refactored DEV-59446 delete namespace code refactored DEV-59446 fixed deleted namespaces present on portal issue * Merge pull request #47 in DEV/k8s-argus from DEV-59276-argus-dev-prof to develop * commit 'e1c57b89b13dd22fa949f1ca7db2672f9e29874e': DEV-59276: Created dev profile dockerfile and updated makefile with dev profile
- Loading branch information
1 parent
a13a3dd
commit 5ed97d4
Showing
4 changed files
with
72 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM golang:1.14 as build | ||
WORKDIR $GOPATH/src/github.com/logicmonitor/k8s-argus | ||
ARG VERSION | ||
COPY ./ ./ | ||
RUN GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o /argus -ldflags "-X \"github.com/logicmonitor/k8s-argus/pkg/constants.Version=${VERSION}\"" | ||
|
||
FROM alpine:3.6 | ||
LABEL maintainer="LogicMonitor <[email protected]>" | ||
RUN apk --update add ca-certificates \ | ||
&& rm -rf /var/cache/apk/* \ | ||
&& rm -rf /var/lib/apk/* | ||
WORKDIR /app | ||
COPY --from=build /argus /bin | ||
|
||
ENTRYPOINT ["argus"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters