|
| 1 | +# vim:set ft=dockerfile: |
| 2 | +# |
| 3 | +# Copyright The CloudNativePG Contributors |
| 4 | +# |
| 5 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | +# you may not use this file except in compliance with the License. |
| 7 | +# You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, software |
| 12 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | +# See the License for the specific language governing permissions and |
| 15 | +# limitations under the License. |
| 16 | +# |
| 17 | +FROM postgis/postgis:15-3.3 |
| 18 | + |
| 19 | +# Do not split the description, otherwise we will see a blank space in the labels |
| 20 | +LABEL name="PostgreSQL + PostGIS Container Images" \ |
| 21 | + vendor="The CloudNativePG Contributors" \ |
| 22 | + version="${PG_VERSION}" \ |
| 23 | + release="1" \ |
| 24 | + summary="PostgreSQL + PostGIS Container images." \ |
| 25 | + description="This Docker image contains PostgreSQL, PostGIS and Barman Cloud based on Postgres 15-3.3." |
| 26 | + |
| 27 | +COPY requirements.txt / |
| 28 | + |
| 29 | +# Install pgaudit |
| 30 | +RUN set -xe; \ |
| 31 | + apt-get update; \ |
| 32 | + apt-get install -y --no-install-recommends \ |
| 33 | + "postgresql-${PG_MAJOR}-pgaudit" ;\ |
| 34 | + rm -fr /tmp/* ; \ |
| 35 | + rm -rf /var/lib/apt/lists/*; |
| 36 | + |
| 37 | +# Install barman-cloud |
| 38 | +RUN set -xe; \ |
| 39 | + apt-get update; \ |
| 40 | + apt-get install -y --no-install-recommends \ |
| 41 | + python3-pip \ |
| 42 | + python3-psycopg2 \ |
| 43 | + python3-setuptools \ |
| 44 | + ; \ |
| 45 | + pip3 install --upgrade pip; \ |
| 46 | +# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved |
| 47 | + pip3 install --no-deps -r requirements.txt; \ |
| 48 | + rm -rf /var/lib/apt/lists/*; |
| 49 | + |
| 50 | +# Change the uid of postgres to 26 |
| 51 | +RUN usermod -u 26 postgres |
| 52 | +USER 26 |
0 commit comments