scripts

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit d0f66380de4e23ed1fdbe2b5ca9da9365569ab97
parent a56d98a8d529061c632d537a45d09bf2267fb352
Author: Andrew Laack <andrew@laack.co>
Date:   Tue,  3 Mar 2026 10:22:59 -0600

Defined basic dev container for professional work

Diffstat:
Acontainer/development/Containerfile | 3+++
Adev-container.sh | 7+++++++
2 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/container/development/Containerfile b/container/development/Containerfile @@ -0,0 +1,3 @@ +FROM archlinux:latest + +RUN yes | pacman -Syu opencode git gcc make tmux python uv diff --git a/dev-container.sh b/dev-container.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +podman build ~/bin/container/development -t development-container + +podman run --rm -it \ + -v $(pwd):/app \ + development-container bash