Used node 23 for docker container

This commit is contained in:
WardPearce
2025-06-02 17:18:51 +12:00
parent 03371a27be
commit 7f7c1f59af
+2 -2
View File
@@ -1,4 +1,4 @@
FROM node AS builder
FROM node:23 AS builder
# Set the working directory
WORKDIR /app
@@ -46,4 +46,4 @@ COPY replace_env_vars.sh /replace_env_vars.sh
RUN chmod +x /replace_env_vars.sh
# Replace env vars & Start nginx
CMD ["/bin/sh", "-c", "/replace_env_vars.sh && nginx -g \"daemon off;\""]
CMD ["/bin/sh", "-c", "/replace_env_vars.sh && nginx -g \"daemon off;\""]