Add the ci image

This commit is contained in:
Sameer Rahmani 2023-03-07 12:18:31 +00:00
commit 9e15028e00
Signed by: lxsameer
GPG Key ID: B0A4AF28AB9FD90B
2 changed files with 21 additions and 0 deletions

14
serene_ci/Dockerfile Normal file
View File

@ -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

7
serene_ci/Makefile Normal file
View File

@ -0,0 +1,7 @@
TAG=10
build:
docker build -t devheroes.codes/serene/ci:$(TAG) $(PWD)
push:
docker push devheroes.codes/serene/ci:$(TAG)