From bcdee823ac5473fc1c5841d09f1b5a5bcb56888d Mon Sep 17 00:00:00 2001 From: msukkari Date: Tue, 24 Sep 2024 20:56:51 -0700 Subject: [PATCH] bake sample-config into docker image so that we can run hello world without cloning --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 90854fd6..71bd631d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -66,6 +66,8 @@ COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf COPY entrypoint.sh ./entrypoint.sh RUN chmod +x ./entrypoint.sh +COPY sample-config.json . + EXPOSE 3000 ENV PORT=3000 ENV HOSTNAME="0.0.0.0"