diff --git a/back/loaders/express.ts b/back/loaders/express.ts index 9c32ca56..5235da1c 100644 --- a/back/loaders/express.ts +++ b/back/loaders/express.ts @@ -38,6 +38,17 @@ export default ({ app }: { app: Application }) => { return handler(req, res, { public: path.join(config.rootPath, 'static/dist'), rewrites: [{ source: '**', destination: '/index.html' }], + headers: [ + { + source: 'index.html', + headers: [ + { + key: 'Cache-Control', + value: 'no-cache', + }, + ], + }, + ], }); } }); diff --git a/docker/Dockerfile b/docker/Dockerfile index b160d95b..1e5307fc 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -29,7 +29,6 @@ RUN set -x \ && apk upgrade \ && apk --no-cache add -f bash \ coreutils \ - moreutils \ git \ curl \ wget \