diff --git a/javascript/Dockerfile b/javascript/Dockerfile index 38954ed..e2ebef4 100644 --- a/javascript/Dockerfile +++ b/javascript/Dockerfile @@ -19,30 +19,10 @@ RUN yarn install && yarn build # performance when loading the Cartesi Machine. FROM --platform=linux/riscv64 cartesi/node:20.8.0-jammy-slim -ARG MACHINE_EMULATOR_TOOLS_VERSION=0.14.1 -ADD https://github.com/cartesi/machine-emulator-tools/releases/download/v${MACHINE_EMULATOR_TOOLS_VERSION}/machine-emulator-tools-v${MACHINE_EMULATOR_TOOLS_VERSION}.deb / -RUN dpkg -i /machine-emulator-tools-v${MACHINE_EMULATOR_TOOLS_VERSION}.deb \ - && rm /machine-emulator-tools-v${MACHINE_EMULATOR_TOOLS_VERSION}.deb - LABEL io.cartesi.rollups.sdk_version=0.6.0 LABEL io.cartesi.rollups.ram_size=128Mi -ARG DEBIAN_FRONTEND=noninteractive -RUN <