Skip to content

Commit

Permalink
Merge pull request #25 from etalab/elixir-1.12.2
Browse files Browse the repository at this point in the history
Mise à jour Elixir 1.12.2
  • Loading branch information
thbar authored Jul 8, 2021
2 parents ab0e900 + 6a21b88 commit 669c87a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ docker run -it --rm $IMAGE_NAME /bin/bash -c "erl -noshell -eval 'erlang:display
* List the local images with `docker image ls`
* Filter with `docker image ls | grep "betagouv/transport" | grep $IMAGE_VERSION`
* Push with `docker image push $IMAGE_NAME`
* Verify tag presence at https://hub.docker.com/repository/docker/betagouv/transport
* TODO: handle `latest` (but it is currently unused)

## Useful tricks when upgrading
Expand Down
15 changes: 13 additions & 2 deletions transport-site/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# see https://hub.docker.com/r/hexpm/elixir
FROM hexpm/elixir:1.12.1-erlang-24.0.3-alpine-3.13.3
# We leverage the base images published by hexpm.
#
# https://hub.docker.com/r/hexpm/elixir
#
# They provide the ability to decouple Elixir version
# and OTP version, which is a nice feature for
# incremental/decoupled upgrades.
#
# These base images package Elixir and OTP releases found at:
# - https://github.com/elixir-lang/elixir/releases
# - https://github.com/erlang/otp/releases
#
FROM hexpm/elixir:1.12.2-erlang-24.0.3-alpine-3.13.3

# TODO: iconv could probably be removed later
# https://github.com/etalab/transport-site/issues/1591
Expand Down

0 comments on commit 669c87a

Please sign in to comment.