From 63d6f5d54558ffcdfd92859f9f36bad1bfc604dc Mon Sep 17 00:00:00 2001 From: mschfh <37435502+mschfh@users.noreply.github.com> Date: Tue, 7 Jul 2026 18:19:41 -0500 Subject: [PATCH] build(docker): enable compute install-tools --- CHANGELOG.md | 1 + Dockerfile-go | 4 +--- Dockerfile-node | 4 +--- Dockerfile-rust | 4 +--- 4 files changed, 4 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 832f4e325..df4a2c9d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,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"]