aboutsummaryrefslogtreecommitdiff
path: root/.devcontainer
diff options
context:
space:
mode:
authorMickaël Rémond <mremond@process-one.net>2021-05-12 11:16:46 +0200
committerGitHub <noreply@github.com>2021-05-12 11:16:46 +0200
commit2844a2d73e847e694244b338e2fc9516a2d119b2 (patch)
tree42b64a4d160075a98c5c76bdf29a5aeaa06c9659 /.devcontainer
parentMinor fixes for new_sql_schema support in SQLite (#3303) (diff)
Use a prebuilt image
Diffstat (limited to '')
-rw-r--r--.devcontainer/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index 12cdc9eb5..9895af51c 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -1,6 +1,6 @@
-# Update the VARIANT arg in docker-compose.yml to pick an Elixir version: 1.9, 1.10, 1.10.4
+# Update the VARIANT arg to pick an Elixir version: latest, 1.11.4, etc.
ARG VARIANT=latest
-FROM elixir:${VARIANT}
+FROM docker.pkg.github.com/processone/docker-build/elixir:${VARIANT}
# This Dockerfile adds a non-root user with sudo access. Update the “remoteUser” property in
# devcontainer.json to use it. More info: https://aka.ms/vscode-remote/containers/non-root-user.