File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 25
25
- name : Set up Elixir
26
26
uses : erlef/setup-elixir@885971a72ed1f9240973bd92ab57af8c1aa68f24
27
27
with :
28
- elixir-version : " 1.12.3 " # Define the elixir version [required]
29
- otp-version : " 22 " # Define the OTP version [required]
28
+ elixir-version : " 1.14.1 " # Define the elixir version [required]
29
+ otp-version : " 25 " # Define the OTP version [required]
30
30
- name : Restore dependencies cache
31
31
uses : actions/cache@v2
32
32
with :
Original file line number Diff line number Diff line change 1
- FROM elixir:1.12.3 -alpine as build
1
+ FROM elixir:1.14.1 -alpine as build
2
2
3
3
# install build dependencies
4
4
RUN apk add --update git build-base nodejs npm yarn python3
@@ -36,7 +36,7 @@ RUN mix release
36
36
37
37
# prepare release image
38
38
FROM alpine:3.16 as app
39
- RUN apk add --update bash openssl
39
+ RUN apk upgrade --no-cache && apk add --update bash openssl libgcc libstdc++ ncurses-libs
40
40
41
41
RUN mkdir /app
42
42
WORKDIR /app
Original file line number Diff line number Diff line change @@ -55,9 +55,9 @@ Please always chekcout the latest release documentation for Phoenix from [here](
55
55
56
56
#### Stack Versions
57
57
58
- ** Elixir:** ` 1.12.3 `
58
+ ** Elixir:** ` 1.14.1 `
59
59
60
- ** Erlang/OTP:** ` 22 `
60
+ ** Erlang/OTP:** ` 25 `
61
61
62
62
** Phoenix:** ` 1.6.0 `
63
63
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ defmodule Coliving.MixProject do
5
5
[
6
6
app: :coliving ,
7
7
version: "0.6.0" ,
8
- elixir: "~> 1.12.3 " ,
8
+ elixir: "~> 1.14.1 " ,
9
9
elixirc_paths: elixirc_paths ( Mix . env ( ) ) ,
10
10
compilers: [ :phoenix ] ++ Mix . compilers ( ) ,
11
11
start_permanent: Mix . env ( ) == :prod ,
You can’t perform that action at this time.
0 commit comments