You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
diff --git a/explorer-ui/Dockerfile b/explorer-ui/Dockerfile
index 4a5c777..29afd6b 100644
--- a/explorer-ui/Dockerfile
+++ b/explorer-ui/Dockerfile
@@ -2,6 +2,12 @@
FROM node:lts as builder
+RUN apt update
+RUN apt install -y chromium
+
+# skips puppeteer installing chrome and points to correct binary
+ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
+
# The application depends on PolkADAPT, so we have to install and build PolkADAPT first.
WORKDIR /app/polkadapt
The text was updated successfully, but these errors were encountered:
I keep coming across an error building the dockerfile on an M1 Pro.
This was due to not being able to install chromium for arm64.
See: https://stackoverflow.com/a/72291691/7101091
I was able to fix it using
The text was updated successfully, but these errors were encountered: