Skip to content

Commit

Permalink
Merge pull request #1392 from kaytu-io/fix-steampipe-upgrade
Browse files Browse the repository at this point in the history
fix: grant permission to all steampipe files
  • Loading branch information
artaasadi authored Jul 31, 2024
2 parents a3f2355 + fe07aa6 commit 0dac33d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion docker/AnalyticsWorkerDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ COPY --from=kaytu /steampipe-plugin-kaytu.plugin /home/steampipe/.steampipe/plug

USER root
RUN useradd -m -s /bin/bash steampipe
RUN chown -R steampipe /home/steampipe/.steampipe
RUN mkdir -p /home/steampipe/.steampipe/config
RUN chown -R steampipe:steampipe /home/steampipe/.steampipe
RUN chmod -R 755 /home/steampipe/.steampipe
RUN apt update
RUN apt install -y procps htop
Expand Down
3 changes: 2 additions & 1 deletion docker/ComplianceReportWorkerDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ COPY --from=kaytu /steampipe-plugin-kaytu.plugin /home/steampipe/.steampipe/plug

USER root
RUN useradd -m -s /bin/bash steampipe
RUN chown -R steampipe /home/steampipe/.steampipe
RUN mkdir -p /home/steampipe/.steampipe/config
RUN chown -R steampipe:steampipe /home/steampipe/.steampipe
RUN chmod -R 755 /home/steampipe/.steampipe
RUN apt update
RUN apt install -y procps htop
Expand Down
3 changes: 2 additions & 1 deletion docker/InsightWorkerDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ COPY --from=kaytu /steampipe-plugin-kaytu.plugin /home/steampipe/.steampipe/plug

USER root
RUN useradd -m -s /bin/bash steampipe
RUN chown -R steampipe /home/steampipe/.steampipe
RUN mkdir -p /home/steampipe/.steampipe/config
RUN chown -R steampipe:steampipe /home/steampipe/.steampipe
RUN chmod -R 755 /home/steampipe/.steampipe
RUN apt update
RUN apt install -y procps htop
Expand Down
3 changes: 2 additions & 1 deletion docker/SteampipeServiceDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ COPY --from=kaytu /steampipe-plugin-kaytu.plugin /home/steampipe/.steampipe/plug

USER root
RUN useradd -m -s /bin/bash steampipe
RUN chown -R steampipe /home/steampipe/.steampipe
RUN mkdir -p /home/steampipe/.steampipe/config
RUN chown -R steampipe:steampipe /home/steampipe/.steampipe
RUN chmod -R 755 /home/steampipe/.steampipe
RUN apt update
RUN apt install -y procps htop
Expand Down

0 comments on commit 0dac33d

Please sign in to comment.