Files
quic_ecs_dt/.devcontainer/Dockerfile
Valère Plantevin 882d13f402 Initial commit
2026-04-21 20:31:35 -04:00

12 lines
343 B
Docker

FROM debian:trixie-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
sudo curl git ca-certificates \
&& rm -rf /var/lib/apt/lists/*
# Create non-root user matching Coder's expectations
RUN useradd -m -s /bin/bash coder \
&& echo "coder ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
USER coder
WORKDIR /home/coder