diff --git a/Dockerfile b/Dockerfile
index f94cf38..36d4607 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,9 +5,13 @@ RUN npm install -d --no-package-lock
COPY . .
RUN npm run build
-FROM erseco/alpine-php-webserver:latest AS release
-RUN rm -rf /var/www/html/* && \
- echo 'short_open_tag = On' >> /etc/php83/conf.d/custom.ini && \
- sed -i 's|$uri/|$uri/ $uri.html|; s|fastcgi_index.*|expires 7d;|; s/ico|xml/ico|xml|txt/' /etc/nginx/nginx.conf
-
+FROM erseco/alpine-php-webserver:3.20.4 AS release
+USER root
+RUN apk add --no-cache bash && \
+ rm -rf /var/www/html/*
+COPY ./docker/docker_setup.sh /setup.sh
+COPY ./docker/populate_cache.sh /usr/bin/populate
+RUN bash /setup.sh && \
+ chmod +x /usr/bin/populate
COPY --chown=nobody:nobody --from=build /app/public/. /var/www/html
+USER nobody
\ No newline at end of file
diff --git a/client/images/notes/blaz.png b/client/images/notes/blaz.png
new file mode 100644
index 0000000..b129582
Binary files /dev/null and b/client/images/notes/blaz.png differ
diff --git a/client/index.html b/client/index.html
index aaa220c..7f5bc25 100644
--- a/client/index.html
+++ b/client/index.html
@@ -43,7 +43,7 @@