Skip to content

Commit

Permalink
Merge branch 'latest'
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Aug 31, 2024
2 parents dab099e + 41a7239 commit a67b891
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions fluentci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,11 @@ USER ${USER}
RUN mkdir -p /home/${USER}/.deno/bin
ENV PATH=${PATH}:/home/${USER}/.deno/bin
ENV PATH=${PATH}:/home/${USER}/.local/bin
ENV PATH=${PATH}:/home/${USER}/.rye/shims
ENV PATH=${PATH}:/home/${USER}/.local/share/mise/shims
ENV PATH=${PATH}:/home/${USER}/.moon/bin
ENV PATH=${PATH}:/home/${USER}/.nix-profile/bin
ENV PATH=${PATH}:/home/${USER}/.arkade/bin
ENV PATH=${PATH}:/home/${USER}/.version-fox/shims
CMD ["fluentci"]
ENTRYPOINT ["/tini", "--", "entrypoint.sh"]
6 changes: 6 additions & 0 deletions fluentci/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ const image = new Dockerfile()
.run("mkdir -p /home/${USER}/.deno/bin")
.env("PATH", "${PATH}:/home/${USER}/.deno/bin")
.env("PATH", "${PATH}:/home/${USER}/.local/bin")
.env("PATH", "${PATH}:/home/${USER}/.rye/shims")
.env("PATH", "${PATH}:/home/${USER}/.local/share/mise/shims")
.env("PATH", "${PATH}:/home/${USER}/.moon/bin")
.env("PATH", "${PATH}:/home/${USER}/.nix-profile/bin")
.env("PATH", "${PATH}:/home/${USER}/.arkade/bin")
.env("PATH", "${PATH}:/home/${USER}/.version-fox/shims")
.cmd(["fluentci"])
.entrypoint(["/tini", "--", "entrypoint.sh"]);

Expand Down

0 comments on commit a67b891

Please sign in to comment.