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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
openssh-client \
jq \
zsh \
postgresql-client \

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

To improve build reproducibility and maintainability, pin the version of the postgresql-client package. This ensures builds are deterministic and prevents unexpected breakages due to new package releases in the repository. For example: postgresql-client=15.

# Install uv:
&& curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR="/usr/local/bin" sh \
# Install Pulumi:
Expand Down
4 changes: 4 additions & 0 deletions tests/specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,7 @@ commandTests:
- name: "ONBUILD was executed"
command: "ruff"
args: ["--version"]

- name: "psql is installed in path"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider a more concise name for this test, for better readability and consistency with other tests in the suite.

    name: "psql is installed"

command: "psql"
args: ["--version"]