Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.spa
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Compile NTIA ITM to WASM. Pinned to same emsdk as frontend/wasm/itm/Dockerfile.
# --platform=linux/amd64: emsdk only publishes amd64; WASM output is arch-neutral
# so QEMU-emulating this stage on arm64 runners is fine.
FROM --platform=linux/amd64 emscripten/emsdk:6.0.1 AS wasm-build
FROM --platform=linux/amd64 emscripten/emsdk:6.0.2 AS wasm-build

RUN apt-get update && apt-get install -y --no-install-recommends git ca-certificates \
&& rm -rf /var/lib/apt/lists/*
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.spa.dev
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Compile NTIA ITM to WASM (see Dockerfile.spa for details).
FROM --platform=linux/amd64 emscripten/emsdk:6.0.1 AS wasm-build
FROM --platform=linux/amd64 emscripten/emsdk:6.0.2 AS wasm-build

RUN apt-get update && apt-get install -y --no-install-recommends git ca-certificates \
&& rm -rf /var/lib/apt/lists/*
Expand Down
2 changes: 1 addition & 1 deletion frontend/wasm/itm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# The container runs fetch-vendor.sh + build.sh, then copies artifacts
# (itm.js and itm.d.ts) out to the volume mount.

FROM emscripten/emsdk:6.0.1 AS builder
FROM emscripten/emsdk:6.0.2 AS builder

RUN apt-get update && apt-get install -y --no-install-recommends git ca-certificates \
&& rm -rf /var/lib/apt/lists/*
Expand Down