diff options
author | Mickaël Rémond <mremond@process-one.net> | 2021-05-12 11:51:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-12 11:51:40 +0200 |
commit | 20247af6f6fc3c899746f6daff0b0da4d28a2ecf (patch) | |
tree | af3c1df019711917b9e5172fabaa59c774df528d /.devcontainer | |
parent | Use latest version of the container (diff) |
Use the new Github container registry
Diffstat (limited to '')
-rw-r--r-- | .devcontainer/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 68c868a82..440af194b 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,3 +1,4 @@ # Update the VARIANT arg to pick an Elixir version: latest, 1.11.4, etc. ARG VARIANT=latest -FROM docker.pkg.github.com/processone/docker-build/elixir:${VARIANT} + +FROM ghcr.io/processone/elixir:${VARIANT} |