From b97be28033ad5ec77b3ab8ae7c39d42b4f4d8dd6 Mon Sep 17 00:00:00 2001 From: Enderson Maia Date: Fri, 25 Oct 2024 10:47:54 -0300 Subject: [PATCH] feat: remove --platform=linux/riscv64 --- .github/workflows/build.yaml | 2 +- cpp-low-level/Dockerfile | 4 ++-- cpp/Dockerfile | 4 ++-- go/Dockerfile | 4 ++-- javascript/Dockerfile | 4 ++-- lua/Dockerfile | 4 ++-- python/Dockerfile | 2 +- ruby/Dockerfile | 2 +- rust/Dockerfile | 4 ++-- typescript/Dockerfile | 4 ++-- 10 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8d22aa8..368ded8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -35,7 +35,7 @@ jobs: node-version: current - name: Install Cartesi CLI - run: npm install -g @cartesi/cli@2.0.0-alpha.0 + run: npm install -g @cartesi/cli@2.0.0-alpha.1 - name: Set up QEMU uses: docker/setup-qemu-action@v3 diff --git a/cpp-low-level/Dockerfile b/cpp-low-level/Dockerfile index 7f07c8f..bbf9114 100644 --- a/cpp-low-level/Dockerfile +++ b/cpp-low-level/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker.io/docker/dockerfile:1 ARG MACHINE_EMULATOR_TOOLS_VERSION=0.16.1 -FROM --platform=linux/riscv64 ubuntu:22.04 AS builder +FROM ubuntu:22.04 AS builder ARG DEBIAN_FRONTEND=noninteractive RUN <