Merge pull request #103 from kc8apf/nginx_pin_arch

Force amd64 image for nginx
This commit is contained in:
Tim Ansell 2018-02-27 11:13:55 -08:00 committed by GitHub
commit 7be3dab337
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,5 +8,5 @@ RUN cd /source && make -j${NUM_PARALLEL_JOBS} --output-sync=target --warn-undefi
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:alpine
COPY --from=db_builder /output /usr/share/nginx/html