Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kaznak committed Jul 19, 2024
1 parent fb4f8e3 commit be825c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cloudnativepg-configured/16/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ RUN apt-get update \

# Install pgroonga
RUN apt-get update \
&& apt-get install -y wget \
&& echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release --codename --short)-pgdg main" | tee /etc/apt/sources.list.d/pgdg.list \
&& apt-get install -y lsb-release wget \
&& echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -c -s)-pgdg main" | tee /etc/apt/sources.list.d/pgdg.list \
&& wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
&& apt-get update \
&& apt-get remove -y wget \
&& apt install -y -V "postgresql-16-${PG_MAJOR}-pgroonga" "groonga-tokenizer-mecab" \
&& apt-get autoremove -y \
&& apt-get remove -y lsb-release wget \
&& apt-get clean \
&& rm -rf /etc/apt/sources.list.d/pgdg.list \
&& echo /tmp/* /var/lib/apt/lists/* | xargs rm -rf
Expand Down

0 comments on commit be825c0

Please sign in to comment.