Files
Ian Knight fce01fd387 Issue #1630: Update Dev Container configuration
- Update Elixer & Phoenix versions.
- Update devcontainer configuration to remove deprecated syntax.
- Migrate devcontainer-specific setup from Dockerfile to devcontainer
  feature config in line with current best practice.
- Verify able to compile.
2025-11-29 19:14:27 +01:00

14 lines
489 B
Docker

# Update the VARIANT arg in docker-compose.yml to pick an Elixir version: 1.9, 1.10, 1.10.4
ARG VARIANT="1.15.8"
FROM elixir:${VARIANT}
RUN apt-get update \
&& export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends build-essential cmake webp bash libncurses6 git python3 inotify-tools \
&& apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*
# [Optional] Uncomment this line to install additional package.
# RUN mix ...