From 8d59294cce0407e9eaaeffd4b879f579556dfc54 Mon Sep 17 00:00:00 2001 From: Daniel Martins <29534+danielfm@users.noreply.github.com> Date: Tue, 14 Feb 2023 19:07:26 -0300 Subject: [PATCH] Bump version to 0.8.0 --- Dockerfile | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index db1d7b3..7ee1194 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # build stage -FROM golang:1.19-alpine AS build-env +FROM golang:1.20-alpine AS build-env RUN apk add --no-cache --update alpine-sdk ENV REPO_PATH=/build COPY . $REPO_PATH diff --git a/Makefile b/Makefile index 183c665..e081fd2 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ DOCKER_BIN := podman export GOBIN := $(PWD)/bin export PATH := $(GOBIN):$(PATH) export INSTALL_FLAG= -export TAG=0.7.0 +export TAG=0.8.0 DOCKER_IMAGE = aws-limits-exporter DOCKER_REPO = danielfm