Skip to content

Commit

Permalink
migration to golang 1.12 + alpine 3.10 in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Issif committed Aug 28, 2019
1 parent 31ea883 commit 6298921
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.7.1 - 2019-08-28
#### Enhancement
- update of Dockerfile : golang 1.12 + alpine 3.10

## 2.7.0 - 2019-08-27
#### New
- New output : **Loki**
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
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

Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/falcosidekick/Chart.yaml
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
2 changes: 1 addition & 1 deletion deploy/helm/falcosidekick/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replicaCount: 1

image:
repository: issif/falcosidekick
tag: 2.7.0
tag: 2.7.1
pullPolicy: IfNotPresent

nameOverride: ""
Expand Down

0 comments on commit 6298921

Please sign in to comment.