We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e879a1d commit a0903d5Copy full SHA for a0903d5
1 file changed
timescaledb-pgrx/Dockerfile
@@ -38,16 +38,18 @@ ENV PG17_PG_CONFIG="/usr/lib/postgresql/17/bin/pg_config"
38
# Install Rust
39
# Current Rust version is 1.87.0 at 2025/06/12
40
# --default-toolchain 1.87.0
41
-RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
+RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
42
+
43
+FROM pgrx AS pgrx-wrappers
44
45
# Install and initialize pgrx
46
# Current pgrx version should be 0.14.3 at 2025/06/12
47
# --version 0.14.3
-RUN cargo install --locked cargo-pgrx
48
+RUN cargo install --locked --version=0.14.3 cargo-pgrx
49
RUN cargo pgrx init --pg17=${PG17_PG_CONFIG}
50
51
-FROM pgrx AS wrappers
52
+FROM pgrx-wrappers AS wrappers
53
54
WORKDIR /home/pgrx
55
0 commit comments