-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migration to golang 1.12 + alpine 3.10 in Dockerfile
- Loading branch information
Showing
4 changed files
with
9 additions
and
5 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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Build image (Golang) | ||
FROM golang:1.11-alpine3.8 AS build-stage | ||
FROM golang:1.12-alpine3.10 AS build-stage | ||
ENV GO111MODULE on | ||
ENV CGO_ENABLED 0 | ||
|
||
|
@@ -12,7 +12,7 @@ RUN go mod download | |
RUN go build -o falcosidekick | ||
|
||
# Final Docker image | ||
FROM alpine:3.8 AS final-stage | ||
FROM alpine:3.10 AS final-stage | ||
LABEL MAINTAINER "Thomas Labarussias <[email protected]>" | ||
|
||
RUN apk add --no-cache ca-certificates | ||
|
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
apiVersion: v1 | ||
appVersion: "2.7.0" | ||
appVersion: "2.7.1" | ||
description: A simple daemon to help you with falco's outputs | ||
icon: https://raw.githubusercontent.com/Issif/falcosidekick/master/imgs/falcosidekick.png | ||
name: falcosidekick | ||
version: 0.1.3 | ||
version: 0.1.4 | ||
maintainers: | ||
- name: SweetOps | ||
- name: Issif |
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