From fee202137c2ff1b291f46d808180d2e2459d47c0 Mon Sep 17 00:00:00 2001 From: Amogh Lele Date: Mon, 27 Feb 2023 16:53:04 +0530 Subject: [PATCH] fix: unpin alpine, use latest everywhere --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 80e4078..73aa25c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM elixir:1.12-alpine AS build +FROM elixir AS build # install build dependencies RUN apk add --no-cache build-base npm git curl py-pip rust cargo @@ -34,7 +34,7 @@ RUN mix phx.digest RUN mix do compile, release # prepare release image -FROM alpine:3.9 AS app +FROM alpine AS app RUN apk add --no-cache openssl ncurses-libs libstdc++ WORKDIR /app