This commit is contained in:
Theis Pieter Hollebeek 2024-12-13 12:28:41 +01:00
parent 0875b447e4
commit c9e4a419af
2 changed files with 8 additions and 0 deletions

5
dev-env/Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM archlinux
RUN pacman -Syu --noconfirm
RUN pacman -S make clang git pkg-config --noconfirm
WORKDIR /workspace
ENTRYPOINT ["/bin/bash"]

3
dev-env/run Normal file
View File

@ -0,0 +1,3 @@
#!/bin/sh
docker build -t slige-dev-env dev-env
docker run --name dev-env --rm -it --mount type=bind,source="$(pwd)"/,target=/workspace slige-dev-env