Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 1 addition & 3 deletions Dockerfile-go
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
4 changes: 1 addition & 3 deletions Dockerfile-node
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
4 changes: 1 addition & 3 deletions Dockerfile-rust
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
Loading