From 520036794f8552a1da000d344972d51141071acd Mon Sep 17 00:00:00 2001 From: SoClose <33631880+SoClosee@users.noreply.github.com> Date: Wed, 4 Mar 2026 10:18:54 +0100 Subject: [PATCH] fix: use environment variables for secrets in Dockerfile --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 85a6015..68943c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,4 +21,7 @@ RUN mkdir -p data logs EXPOSE 8420 -CMD ["python3", "miloagent.py", "run", "--web"] +ENV API_KEY=${API_KEY} +ENV SECRET_TOKEN=${SECRET_TOKEN} + +CMD ["python3", "miloagent.py", "run", "--web"] \ No newline at end of file