Skip to content

Commit

Permalink
add pgTAP
Browse files Browse the repository at this point in the history
  • Loading branch information
kaznak committed Mar 26, 2024
1 parent 6558add commit 7b11cde
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions cloudnativepg-configured/16/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,22 @@ RUN apt-get update \
&& apt-get remove -y lsb-release wget \
&& echo /tmp/* /var/lib/apt/lists/* | xargs rm -rf

# Install pgTAP 1.3.2
RUN apt-get update \
&& apt-get install -y unzip wget make gcc patch \
&& wget https://api.pgxn.org/dist/pgtap/1.3.2/pgtap-1.3.2.zip \
&& unzip pgtap-1.3.2.zip \
&& cd pgtap-1.3.2 \
&& make \
&& make install \
&& cd .. \
&& rm -rf pgtap-1.3.2 \
&& rm pgtap-1.3.2.zip \
&& apt-get remove -y unzip wget patch make gcc patch \
&& apt-get autoremove -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

# build locale
RUN localedef -i ja_JP -c -f UTF-8 -A /usr/share/locale/locale.alias ja_JP.UTF-8

Expand Down

0 comments on commit 7b11cde

Please sign in to comment.