From 2f4150751f9798cb077ce2166105e73a1d3c5e09 Mon Sep 17 00:00:00 2001 From: Felix <8057646+GoliathLabs@users.noreply.github.com> Date: Sat, 30 Mar 2024 22:04:35 +0100 Subject: [PATCH] fix: use config.example.json Signed-off-by: Felix <8057646+GoliathLabs@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3456dbb4..8b826e77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,5 +9,5 @@ RUN npm run build FROM nginx:1.25.4-alpine COPY --from=build /code/build/ /usr/share/nginx/html -COPY --from=build /code/config*.json /usr/share/nginx/html/ +COPY --from=build /code/config.example.json /usr/share/nginx/html/ EXPOSE 80