File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ PHP_FPM_INSTALL_OPCACHE=false
7676PHP_FPM_INSTALL_EXIF=false
7777PHP_FPM_INSTALL_AEROSPIKE=false
7878PHP_FPM_INSTALL_MYSQLI=false
79+ PHP_FPM_INSTALL_POSTGRES=false
7980PHP_FPM_INSTALL_TOKENIZER=false
8081PHP_FPM_INSTALL_INTL=false
8182PHP_FPM_INSTALL_GHOSTSCRIPT=false
Original file line number Diff line number Diff line change 1- FROM node:argon
1+ FROM node:alpine
22
33# Create app directory
44RUN mkdir -p /usr/src/app
Original file line number Diff line number Diff line change @@ -207,6 +207,15 @@ RUN if [ ${INSTALL_MYSQLI} = true ]; then \
207207 docker-php-ext-install mysqli \
208208;fi
209209
210+ #####################################
211+ # postgres Modifications:
212+ #####################################
213+
214+ ARG INSTALL_POSTGRES=false
215+ RUN if [ ${INSTALL_POSTGRES} = true ]; then \
216+ docker-php-ext-install pgsql \
217+ ;fi
218+
210219#####################################
211220# Tokenizer Modifications:
212221#####################################
Original file line number Diff line number Diff line change @@ -216,6 +216,15 @@ RUN if [ ${INSTALL_MYSQLI} = true ]; then \
216216 docker-php-ext-install mysqli \
217217;fi
218218
219+ #####################################
220+ # postgres Modifications:
221+ #####################################
222+
223+ ARG INSTALL_POSTGRES=false
224+ RUN if [ ${INSTALL_POSTGRES} = true ]; then \
225+ docker-php-ext-install pgsql \
226+ ;fi
227+
219228#####################################
220229# Tokenizer Modifications:
221230#####################################
You can’t perform that action at this time.
0 commit comments