Skip to content

Commit

Permalink
Update env var
Browse files Browse the repository at this point in the history
  • Loading branch information
ianstanton committed Dec 28, 2023
1 parent 2c9ac5b commit d4a736b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contrib/auto_explain/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ RUN apt-get update && apt-get install -y \
# Clone repository
RUN git clone https://github.com/postgres/postgres.git

ARG PG_RELEASE=REL_15_3
ARG PG_RELEASE_VERSION=REL_15_3

RUN cd postgres && \
git fetch origin ${PG_RELEASE} && \
git checkout ${PG_RELEASE} && \
git fetch origin ${PG_RELEASE_VERSION} && \
git checkout ${PG_RELEASE_VERSION} && \
./configure && \
cd contrib/auto_explain && \
make

0 comments on commit d4a736b

Please sign in to comment.