feat: basic container setup

This commit is contained in:
2026-06-18 14:33:23 +02:00
parent 07813d1d5d
commit 93e212607a
4 changed files with 20 additions and 2 deletions
+3 -2
View File
@@ -1,4 +1,5 @@
FROM archlinux FROM archlinux
RUN pacman -S fish wget
RUN pacman --noconfirm -Sy fish wget git
# TODO: Finish # TODO: Finish
RUN wget # RUN wget https://git.janishutz.com/
Executable
+13
View File
@@ -0,0 +1,13 @@
#!/bin/sh
cd base
docker buildx build . -t git.janishutz.com/registry/dev-container-base
cd ../npm
docker buildx build . -t git.janishutz.com/registry/dev-container-npm
# cd ../vue
# docker buildx build . -t git.janishutz.com/registry/dev-container-vue
#
# cd ../python
# docker buildx build . -t git.janishutz.com/registry/dev-container-python
+3
View File
@@ -0,0 +1,3 @@
FROM git.janishutz.com/registry/dev-container-base
RUN pacman --noconfirm -S nodejs npm yarn
+1
View File
@@ -0,0 +1 @@
FROM git.janishutz.com/registry/dev-container-npm