From f3a8af686665648dd8f43d199ff02b78900f854c Mon Sep 17 00:00:00 2001 From: ErickSkrauch Date: Thu, 2 May 2019 21:55:21 +0300 Subject: [PATCH] Upgrade Alpine version to 3.9, add ca-certificates --- CHANGELOG.md | 1 + Dockerfile | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 220c934..ccc61cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Bumped Go version to 1.12. +- Bumped Alpine version to 3.9.3. ### Fixed - `/textures` request no longer proxies request to Mojang in a case when there is no information about the skin, diff --git a/Dockerfile b/Dockerfile index eb83c07..41aa4eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ -FROM alpine:3.7 +FROM alpine:3.9.3 EXPOSE 80 +RUN apk add --no-cache ca-certificates + ENV STORAGE_REDIS_HOST=redis ENV STORAGE_FILESYSTEM_HOST=/data