use elixir 1.14

This commit is contained in:
shibao 2023-02-26 00:33:54 -05:00
parent bc034c0361
commit 563bbaedf8
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM elixir:1.13-alpine AS build
FROM elixir:1.14.1-alpine AS build
# install build dependencies
RUN apk add --no-cache build-base npm git python3
@ -37,7 +37,7 @@ RUN mix do compile, release
FROM alpine:latest AS app
RUN apk upgrade --no-cache && \
apk add --no-cache bash openssl libgcc libstdc++ ncurses-libs
apk add --no-cache bash openssl libssl1.1 libcrypto1.1 libgcc libstdc++ ncurses-libs
WORKDIR /app

View File

@ -5,7 +5,7 @@ defmodule Lokal.MixProject do
[
app: :lokal,
version: "0.1.0",
elixir: "~> 1.14",
elixir: "1.14.1",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: Mix.compilers(),
start_permanent: Mix.env() == :prod,