diff --git a/Dockerfile b/Dockerfile index 44b88a5..8d64145 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM elixir:1.14-alpine as builder +FROM elixir:1.15-alpine as builder # prepare build dir WORKDIR /app @@ -38,7 +38,7 @@ RUN mix release # start a new build stage so that the final image will only contain # the compiled release and other runtime necessities -FROM elixir:1.14-alpine +FROM elixir:1.15-alpine # Set the locale # RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen