From 499ca6e4304698ffcacc2b7cf6d6d7631cc608fc Mon Sep 17 00:00:00 2001 From: Binaek Sarkar Date: Tue, 28 Sep 2021 14:32:09 +0530 Subject: [PATCH] Add support for rotating service password in Docker images. Closes #957 --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index a4832bd0d..5dc827052 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,6 +33,8 @@ RUN steampipe --version # Run steampipe query to install db and fdw (they are installed on the first run) RUN steampipe query "select * from steampipe_mod" +RUN rm -f /home/steampipe/.steampipe/internal/.passwd + EXPOSE 9193 COPY docker-entrypoint.sh /usr/local/bin ENTRYPOINT [ "docker-entrypoint.sh" ]