Update Alpine Linux version in the docker container. This also updates the PG utilities to v11. Fixes #3991
parent
944cc55df7
commit
438116c574
|
@ -11,6 +11,7 @@ Features
|
||||||
|
|
||||||
| `Feature #1825 <https://redmine.postgresql.org/issues/1825>`_ - Install a script to start pgAdmin (pgadmin4) from the command line when installed from the Python wheel.
|
| `Feature #1825 <https://redmine.postgresql.org/issues/1825>`_ - Install a script to start pgAdmin (pgadmin4) from the command line when installed from the Python wheel.
|
||||||
| `Feature #3439 <https://redmine.postgresql.org/issues/3439>`_ - Allow X-FRAME-OPTIONS to be set for security. Default to SAMEORIGIN.
|
| `Feature #3439 <https://redmine.postgresql.org/issues/3439>`_ - Allow X-FRAME-OPTIONS to be set for security. Default to SAMEORIGIN.
|
||||||
|
| `Feature #3991 <https://redmine.postgresql.org/issues/3991>`_ - Update Alpine Linux version in the docker container. This also updates the PG utilities to v11.
|
||||||
|
|
||||||
Bug fixes
|
Bug fixes
|
||||||
*********
|
*********
|
||||||
|
|
|
@ -19,7 +19,7 @@ RUN yarn install --cache-folder ./ycache --verbose && \
|
||||||
rm -rf ./ycache ./pgadmin/static/js/generated/.cache
|
rm -rf ./ycache ./pgadmin/static/js/generated/.cache
|
||||||
|
|
||||||
# Build Sphinx documentation in separate container
|
# Build Sphinx documentation in separate container
|
||||||
FROM python:3.6-alpine3.7 as docs-builder
|
FROM python:3.7-alpine3.9 as docs-builder
|
||||||
|
|
||||||
# Install only dependencies absolutely required for documentation building
|
# Install only dependencies absolutely required for documentation building
|
||||||
RUN apk add --no-cache make
|
RUN apk add --no-cache make
|
||||||
|
@ -32,8 +32,7 @@ COPY ./pgadmin4/ /pgadmin4
|
||||||
RUN LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 make -C /pgadmin4/docs/en_US -f Makefile.sphinx html
|
RUN LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 make -C /pgadmin4/docs/en_US -f Makefile.sphinx html
|
||||||
|
|
||||||
# Then install backend, copy static files and set up entrypoint
|
# Then install backend, copy static files and set up entrypoint
|
||||||
# Need alpine3.7 to get pg_dump and friends in postgresql-client package
|
FROM python:3.7-alpine3.9
|
||||||
FROM python:3.6-alpine3.7
|
|
||||||
|
|
||||||
RUN pip --no-cache-dir install gunicorn
|
RUN pip --no-cache-dir install gunicorn
|
||||||
RUN apk add --no-cache postfix postgresql-client postgresql-libs
|
RUN apk add --no-cache postfix postgresql-client postgresql-libs
|
||||||
|
|
Loading…
Reference in New Issue