Skip to content

Commit

Permalink
Ensure constant host architecture when reproducibly building the wasm
Browse files Browse the repository at this point in the history
Host architecture, for some reason, can effect the generated code despite the
target architecture always being foreign to the host architecture.
  • Loading branch information
kayabaNerve committed Feb 5, 2024
1 parent a4aa7b0 commit 8fd6247
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orchestration/runtime/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.75.0-slim-bookworm as builder
FROM --platform=linux/amd64 rust:1.75.0-slim-bookworm as builder

# Move to a Debian package snapshot
RUN rm -rf /etc/apt/sources.list.d/debian.sources && \
Expand Down

0 comments on commit 8fd6247

Please sign in to comment.