File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -25,15 +25,15 @@ RUN \
2525 apk add --no-cache postgresql icu libzip libpng
2626
2727# Install sqlsrv driver for x86_64 builds
28- RUN apk add --no-cache --virtual .phpize-deps ${PHPIZE_DEPS} unixodbc-dev && \
29- if [ $(uname -m) == "x86_64" ]; then \
28+ RUN if [ $(uname -m) == "x86_64" ]; then \
29+ apk add --no-cache --virtual .phpize-deps ${PHPIZE_DEPS} unixodbc-dev && \
3030 wget https://download.microsoft.com/download/${MS_ODBC_DOWNLOAD}/msodbcsql${MS_ODBC_SQL_VERSION}-1_amd64.apk && \
3131 apk add --allow-untrusted msodbcsql${MS_ODBC_SQL_VERSION}-1_amd64.apk && \
3232 pecl install pdo_sqlsrv-${PDO_SQLSRV_VERSION} && \
3333 docker-php-ext-enable pdo_sqlsrv && \
34- rm msodbcsql${MS_ODBC_SQL_VERSION}-1_amd64.apk ; \
35- fi ; \
36- apk del .phpize-deps
34+ rm msodbcsql${MS_ODBC_SQL_VERSION}-1_amd64.apk && \
35+ apk del .phpize-deps ; \
36+ fi
3737
3838# Install shlink
3939FROM base AS builder
You can’t perform that action at this time.
0 commit comments