Skip to content

Commit

Permalink
Fix postgres extension step in Dockerfile to keep image small
Browse files Browse the repository at this point in the history
  • Loading branch information
leojonathanoh committed Feb 16, 2023
1 parent 6fe8ae1 commit 736ec9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .docker/release/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ RUN set -eux; \
RUN docker-php-ext-install opcache
# postgres
RUN set -eux; \
apk add --no-cache libpq postgresql-dev; \
apk add --no-cache postgresql-libs; \
apk add --no-cache --virtual .deps postgresql-dev; \
docker-php-ext-install pdo_pgsql; \
apk del .deps
Expand Down

0 comments on commit 736ec9c

Please sign in to comment.