commit 9e15028e00c72bf9580d84fe3838fab4f50ce754 Author: Sameer Rahmani Date: Tue Mar 7 12:18:31 2023 +0000 Add the ci image diff --git a/serene_ci/Dockerfile b/serene_ci/Dockerfile new file mode 100644 index 0000000..2cc8823 --- /dev/null +++ b/serene_ci/Dockerfile @@ -0,0 +1,14 @@ +From debian:11-slim + +RUN apt-get update && apt-get install -y --no-install-recommends bash \ + git \ + zstd \ + cmake \ + ninja-build \ + python3 \ + curl \ + tar \ + python3-dev \ + build-essential && \ + apt-get clean + diff --git a/serene_ci/Makefile b/serene_ci/Makefile new file mode 100644 index 0000000..b020798 --- /dev/null +++ b/serene_ci/Makefile @@ -0,0 +1,7 @@ +TAG=10 + +build: + docker build -t devheroes.codes/serene/ci:$(TAG) $(PWD) + +push: + docker push devheroes.codes/serene/ci:$(TAG)