From de9b93c702e771d4b8ca8c6dae6f33e25f383741 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Tue, 12 Aug 2025 15:38:08 +0200 Subject: Removed Dockerfile (why was it still there?) --- Dockerfile | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 8362741..0000000 --- a/Dockerfile +++ /dev/null @@ -1,29 +0,0 @@ -# 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 - -FROM debian:12 - -# Install necessary packages -RUN apt update -RUN apt install --yes xz-utils git gcc g++ clang python3 python3-dev - -# Install emscripten. -RUN git clone https://github.com/emscripten-core/emsdk.git -WORKDIR /emsdk -RUN ./emsdk install 4.0.11 -RUN ./emsdk activate 4.0.11 -ENV EMSDK="/emsdk" -ENV EMSDK_NODE_BIN="$EMSDK/node/22.16.0_64bit/bin" -ENV EMSDK_NODE="$EMSDK_NODE_BIN/node" -ENV PATH="$EMSDK:$EMSDK/upstream/emscripten:$EMSDK_NODE_BIN:$PATH" - -# Copying the nissy-core repository and switching to that folder. -WORKDIR / -COPY . ./nissy-core -WORKDIR /nissy-core -- cgit v1.3