FROM ubuntu:plucky COPY toolchains /opt/toolchains COPY plucky.sources /etc/apt/sources.list.d/ubuntu.sources RUN dpkg --add-architecture i386 RUN dpkg --add-architecture riscv64 RUN dpkg --add-architecture arm64 RUN dpkg --add-architecture armhf RUN apt-get update -y RUN apt-get install -y cmake build-essential libmbedtls-dev make wget curl gnupg2 crossbuild-essential-armhf crossbuild-essential-i386 crossbuild-essential-riscv64 crossbuild-essential-armhf crossbuild-essential-arm64 libmbedtls-dev:armhf libmbedtls-dev:arm64 libmbedtls-dev:i386 libmbedtls-dev:riscv64 RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - # Install Node.js and npm RUN apt-get install -y nodejs RUN curl https://git.tesseslanguage.com/api/packages/tesses50/debian/repository.key -o /etc/apt/keyrings/gitea-tesses50.asc RUN echo "deb [signed-by=/etc/apt/keyrings/gitea-tesses50.asc] https://git.tesseslanguage.com/api/packages/tesses50/debian plucky main" | tee -a /etc/apt/sources.list.d/gitea.list