From d5d8b0d98e9d92292fa12ff08970ee3112f51ff6 Mon Sep 17 00:00:00 2001 From: Sergey Prokhorov Date: Wed, 7 Aug 2019 22:36:23 +0200 Subject: [PATCH] Use alpine 3.9 for docker. Fixes #15 See https://github.com/erlang/docker-erlang-otp/issues/235 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3819baf..88a72a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Based on https://github.com/erlang/docker-erlang-example -FROM erlang:alpine as builder +FROM erlang:21-alpine as builder RUN apk add --no-cache git @@ -17,7 +17,7 @@ RUN if [ ! -f config/prod-vm.args ]; then cp config/vm.args.example config/prod- RUN rebar3 as prod release -FROM alpine +FROM alpine:3.9 RUN apk add --no-cache openssl && \ apk add --no-cache ncurses-libs && \ apk add --no-cache dumb-init