Initial commit

This commit is contained in:
2026-01-29 22:30:34 +11:00
commit 60955444f2
2 changed files with 18 additions and 0 deletions

8
Containerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM archlinux
RUN pacman -Sy --noconfirm archlinux-keyring
RUN pacman -Syu --noconfirm base-devel git nvim fish htop
RUN useradd -m -s /usr/bin/fish dev
RUN printf 'dev ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/dev && chmod 0440 /etc/sudoers.d/dev
USER dev
WORKDIR /home/dev
CMD ["/usr/bin/fish"]

10
README.md Normal file
View File

@@ -0,0 +1,10 @@
# Max's Dev Container
To build and run:
```
podman build -t dev-container .
podman run -it --rm dev-container
```
Based on Arch Linux.