From 836d626e7caba9578c3440ec0484e7ff1b4cc48e Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Wed, 23 Jul 2025 16:17:43 +0200 Subject: Added dockerfile for test in container --- Dockerfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a18a9cd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,19 @@ +# This Dockerfile can be use to build a container to test nissy in different +# platforms. For example you can build the image with: +# +# docker build localhost/nissy-dev/arm . +# +# And then run unit tests in an arm64 container with +# +# docker run --platform=linux/arm64 -t localhost/nissy-dev/arm ./build test + +# TODO: add C++ compiler, emscripten + +FROM alpine:3.22.1 +RUN apk update && apk add \ + gcc \ + clang \ + python3 \ + python3-dev + +COPY . ./ -- cgit v1.3