Bump Elixir to 1.14.2, OTP to 25.1.2 (#1129)

* Bump Elixir to 1.14.2, OTP to 25.1.2

* bump tool versions
This commit is contained in:
Jamil
2022-11-18 09:55:54 -08:00
committed by GitHub
parent 340ec59109
commit 5be9b2003b
3 changed files with 6 additions and 6 deletions

View File

@@ -1,8 +1,8 @@
# These are used for the dev environment.
# This should match the versions used in the built product.
nodejs 16.17.0
elixir 1.14.1-otp-25
erlang 25.1.1
elixir 1.14.2-otp-25
erlang 25.1.2
# Used for static analysis
ruby 2.7.6

View File

@@ -1,6 +1,6 @@
# This Dockerfile builds a development image to use for local development work
FROM firezone/elixir:1.14.1-otp-25.1.1
FROM firezone/elixir:1.14.2-otp-25.1.2
# Install dev dependencies / convenience tools
RUN apk add \

View File

@@ -1,6 +1,6 @@
ARG ELIXIR_VERSION=1.14.1
ARG OTP_VERSION=25.1.1
ARG ALPINE_VERSION=3.16.2
ARG ELIXIR_VERSION=1.14.2
ARG OTP_VERSION=25.1.2
ARG ALPINE_VERSION=3.16.3
ARG BUILDER_IMAGE="firezone/elixir:${ELIXIR_VERSION}-otp-${OTP_VERSION}"
ARG RUNNER_IMAGE="alpine:${ALPINE_VERSION}"