Initial commit

This commit is contained in:
Valère Plantevin
2026-04-21 20:31:35 -04:00
commit 882d13f402
21 changed files with 3910 additions and 0 deletions

12
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
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