logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: a7079057a9bf98612cc83255370107ace9af2efc
parent 724bf7c6474d4ec37c8713d9eec634dec62e8614
Author: lain <lain@soykaf.club>
Date:   Thu,  9 Feb 2023 19:47:00 +0000

Merge branch 'tusooa/docker-hexpm' into 'develop'

Use versioned image from hexpm for docker images

See merge request pleroma/pleroma!3834

Diffstat:

MDockerfile8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile @@ -1,4 +1,8 @@ -FROM elixir:1.11.4-alpine as build +ARG ELIXIR_VER=1.11.4 +ARG ERLANG_VER=24.2.1 +ARG ALPINE_VER=3.17.0 + +FROM hexpm/elixir:${ELIXIR_VER}-erlang-${ERLANG_VER}-alpine-${ALPINE_VER} as build COPY . . @@ -12,7 +16,7 @@ RUN apk add git gcc g++ musl-dev make cmake file-dev &&\ mkdir release &&\ mix release --path release -FROM alpine +FROM alpine:${ALPINE_VER} ARG BUILD_DATE ARG VCS_REF