From 0a12dac40b557f77220ddebb51d8e851a2c3c528 Mon Sep 17 00:00:00 2001 From: Devan Carpenter Date: Wed, 7 Jun 2023 11:53:49 -0400 Subject: CI: intial CI setup add ci directory with 3 basic jobs. --- ci/Containerfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ci/Containerfile (limited to 'ci/Containerfile') diff --git a/ci/Containerfile b/ci/Containerfile new file mode 100644 index 000000000..4e3369830 --- /dev/null +++ b/ci/Containerfile @@ -0,0 +1,19 @@ +FROM docker.io/library/node:18-slim + +ENV DEBIAN_FRONTEND=noninteractive + +RUN apt-get update -yq && \ + apt-get install -yqq \ + git \ + python3 \ + python3-distutils \ + make \ + zip \ + jq + +RUN npm install -g pnpm + +# Set our workdir. All subsequent commands will be relative to this path. +WORKDIR /workdir + +CMD ["bash", "/workdir/ci/ci.sh"] -- cgit v1.2.3