From 93ced10d4c8f2df5e2f8532245164278b0b1766d Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Thu, 22 Feb 2018 14:17:58 -0800 Subject: [PATCH] infra: Force a given docker architecture. See https://github.com/docker-library/official-images/issues/3835 Signed-off-by: Tim 'mithro' Ansell --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a2544951..e3d36de8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,5 +8,5 @@ RUN cd /source && make -j${NUM_PARALLEL_JOBS} database RUN find /source/database -mindepth 1 -maxdepth 1 -type d -exec /source/htmlgen/htmlgen.py --settings={}/settings.sh --output=/output/html \; RUN mkdir -p /output/raw && find /source/database -mindepth 1 -maxdepth 1 -type d -exec cp -R {} /output/raw \; -FROM nginx:alpine +FROM amd64/nginx:latest COPY --from=db_builder /output /usr/share/nginx/html