0
0
mirror of https://github.com/signalapp/libsignal.git synced 2024-09-20 03:52:17 +02:00

Node: The prebuild Docker image only works as an x86_64 guest

This commit is contained in:
Jordan Rose 2024-01-10 16:54:09 -08:00
parent c15a47d9a4
commit e2106b6184

View File

@ -4,7 +4,7 @@
#
# Debian bullseye is the basis for Ubuntu 20.04.
FROM debian:bullseye-slim
FROM --platform=linux/amd64 debian:bullseye-slim
# Install only what's needed to set up Rust and Node.
# We'll install additional tools at the end to take advantage of Docker's caching of earlier steps.