From 2a6cf5ad1efa9725e59d8ac965211b7f64186b71 Mon Sep 17 00:00:00 2001 From: Peter Cai Date: Wed, 12 Oct 2022 14:36:51 -0400 Subject: [PATCH] standardnotes-web: Disable cache-control headers from inside the container --- standardnotes-web/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/standardnotes-web/Dockerfile b/standardnotes-web/Dockerfile index 9d2e39e..1e245df 100644 --- a/standardnotes-web/Dockerfile +++ b/standardnotes-web/Dockerfile @@ -19,4 +19,7 @@ COPY start.sh / RUN chmod +x /start.sh +# Disable cache-control headers sent by the container +ENV SERVER_CACHE_CONTROL_HEADERS=false + CMD [ "/start.sh" ]