diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f64d6eb0..c929e55fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ - feat(compute): add `install-tools` command to pre-install the Viceroy binary ([#1833](https://github.com/fastly/cli/pull/1833)) ### Enhancements: +- build(docker): enable compute install-tools ([#1842](https://github.com/fastly/cli/pull/1842)) - feat(ngwaf/timeseries): add support for account and workspace times series commands ([#1823](https://github.com/fastly/cli/pull/1823)) ### Dependencies: diff --git a/Dockerfile-go b/Dockerfile-go index 42fcf9abc..868c4a138 100644 --- a/Dockerfile-go +++ b/Dockerfile-go @@ -16,9 +16,7 @@ USER fastly # Pre-install Viceroy so the image is self-contained (no download at runtime). # Must run as the `fastly` user, since Viceroy installs into that user's config # directory (where `compute serve` later looks for it). -# -# TODO: Enable once https://github.com/fastly/cli/pull/1833 was released -# RUN fastly compute install-tools +RUN fastly compute install-tools WORKDIR /app ENTRYPOINT ["/usr/bin/fastly"] diff --git a/Dockerfile-node b/Dockerfile-node index e79930799..561363456 100644 --- a/Dockerfile-node +++ b/Dockerfile-node @@ -16,9 +16,7 @@ USER fastly # Pre-install Viceroy so the image is self-contained (no download at runtime). # Must run as the `fastly` user, since Viceroy installs into that user's config # directory (where `compute serve` later looks for it). -# -# TODO: Enable once https://github.com/fastly/cli/pull/1833 was released -# RUN fastly compute install-tools +RUN fastly compute install-tools WORKDIR /app ENTRYPOINT ["/usr/bin/fastly"] diff --git a/Dockerfile-rust b/Dockerfile-rust index aa05b72ac..3dc8f8ae2 100644 --- a/Dockerfile-rust +++ b/Dockerfile-rust @@ -19,9 +19,7 @@ USER fastly # Pre-install Viceroy so the image is self-contained (no download at runtime). # Must run as the `fastly` user, since Viceroy installs into that user's config # directory (where `compute serve` later looks for it). -# -# TODO: Enable once https://github.com/fastly/cli/pull/1833 was released -# RUN fastly compute install-tools +RUN fastly compute install-tools WORKDIR /app ENTRYPOINT ["/usr/bin/fastly"]