Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
change build elixir image to hexpm origined, and matching alpine vers…
Browse files Browse the repository at this point in the history
…ion for app (#139)

* change build elixir image to hexpm origined, and matching alpine version for app image

* Use Erlang 25

---------

Co-authored-by: Bartosz Błaszków <[email protected]>
  • Loading branch information
blazpie and bblaszkow06 authored Feb 24, 2023
1 parent f3bc569 commit af1a0a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM elixir:1.13.4-alpine AS build
FROM hexpm/elixir:1.13.4-erlang-25.2.3-alpine-3.16.3 AS build

# install build dependencies
RUN \
Expand Down Expand Up @@ -46,7 +46,7 @@ RUN mix assets.deploy
RUN mix do compile, release

# prepare release image
FROM alpine:3.16 AS app
FROM alpine:3.16.3 AS app

# install runtime dependencies
RUN \
Expand Down

0 comments on commit af1a0a8

Please sign in to comment.