From b8b8a5ee85e3b64ae9058327e0904d95250537ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20H=C3=A4ger?= Date: Tue, 16 Mar 2021 22:32:48 +0100 Subject: [PATCH] Docker image: serve pre-compressed assets using gzip_static MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Häger --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8462d1136..02b06ed74 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,6 +27,11 @@ RUN cp /src/config.sample.json /src/webapp/config.json # Ensure we populate the version file RUN dos2unix /src/scripts/docker-write-version.sh && bash /src/scripts/docker-write-version.sh +# Pre-compress for gzip_static +RUN find /src/webapp -type f \ + \( -iname '*.css' -o -iname '*.js' -o -iname '*.json' -o -iname '*.html' \ + -o -iname '*.svg' -o -iname '*.ttf' -o -iname '*.wasm' \) \ + -exec gzip -9 -k {} \; -exec touch -r {} {}.gz \; # App FROM nginx:alpine @@ -34,7 +39,8 @@ FROM nginx:alpine COPY --from=builder /src/webapp /app # Insert wasm type into Nginx mime.types file so they load correctly. -RUN sed -i '3i\ \ \ \ application/wasm wasm\;' /etc/nginx/mime.types +RUN sed -i '3i\ \ \ \ application/wasm wasm\;' /etc/nginx/mime.types \ + && sed -i '2i\ gzip_static on\;' /etc/nginx/conf.d/default.conf RUN rm -rf /usr/share/nginx/html \ && ln -s /app /usr/share/nginx/html