chore: Update README
All checks were successful
ci / docker-build (push) Successful in 7m40s
ci / build-and-test (push) Successful in 10m38s

This commit is contained in:
Brock Allen
2024-01-28 07:50:12 +00:00
parent dce7d3492d
commit c826a4ecd8
9 changed files with 1 additions and 3 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
project_name=cproject
builder-build :
docker build -f builder.Dockerfile -t $(project_name)-builder:latest .
builder-run :
docker run \
--rm \
-it \
--workdir /builder/mnt \
-v .:/builder/mnt \
$(project_name)-builder:latest \
/bin/bash