diff --git a/CHANGELOG.md b/CHANGELOG.md index afa38490cd936e5a978ddfb4c5e02123551ec2d9..b67968f41d81fe682ac5a099bbf28396234e7b5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,7 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr - Log better startup error message when database schema is not set up at all. ### Changed -- Use Go 1.12.8 on Alpine 3.10 as base Docker container image and native builds. +- Use Go 1.12.9 on Alpine 3.10 as base Docker container image and native builds. - Update devconsole lodash (4.17.13) and lodash.template (4.5.0) dependencies. - Errors from runtime before hooks no longer close the session. - Switch prometheus metrics to use labels instead of a prefix. diff --git a/build/Dockerfile b/build/Dockerfile index 9616e0c6e16315f14ce29713d3236b8cb6fb9b56..11af14c968c00e4c075191c865d8debc6042c7d6 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -15,7 +15,7 @@ # docker build "$PWD" --build-arg commit="$(git rev-parse --short HEAD)" --build-arg version=v2.1.1 -t heroiclabs/nakama:2.1.1 # docker build "$PWD" --build-arg commit="$(git rev-parse --short HEAD)" --build-arg version="v2.1.1-$(git rev-parse --short HEAD)" -t heroiclabs/nakama-prerelease:"2.1.1-$(git rev-parse --short HEAD)" -FROM golang:1.12.8-alpine3.10 as builder +FROM golang:1.12.9-alpine3.10 as builder ARG commit ARG version diff --git a/build/pluginbuilder/Dockerfile b/build/pluginbuilder/Dockerfile index 25cdb796ef74c67895535f5f2b82d577a59c73e2..585de16d3dffd2c53e84a7255fc2f53393985f3b 100644 --- a/build/pluginbuilder/Dockerfile +++ b/build/pluginbuilder/Dockerfile @@ -15,7 +15,7 @@ # docker build "$PWD" --file ./Dockerfile.pluginbuilder --build-arg commit="$(git rev-parse --short HEAD)" --build-arg version=v2.1.1 -t heroiclabs/nakama-pluginbuilder:2.1.1 # docker build "$PWD" --file ./Dockerfile.pluginbuilder --build-arg commit="$(git rev-parse --short HEAD)" --build-arg version="v2.1.1-$(git rev-parse --short HEAD)" -t heroiclabs/nakama-prerelease:"2.1.1-$(git rev-parse --short HEAD)" -FROM golang:1.12.8-alpine3.10 as builder +FROM golang:1.12.9-alpine3.10 as builder MAINTAINER Heroic Labs