Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## Versión v1.0.1

### Changed
- Oracle Instant Client updated in php-fpm-7.4 Dockerfile. Now using version 12.2.

## Versión v1.0.0

### Added
Expand Down
1 change: 1 addition & 0 deletions ubuntu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ PHP flavors:
~~PHP [5.6.32](php-fpm-5.6.32/README.md)~~ (not ready yet)
PHP [7.1](php-fpm-7.1/README.md)
PHP [7.2](php-fpm-7.2/README.md)
PHP [7.4](php-fpm-7.4/README.md)

Images prepared to work with www-data user.

Expand Down
12 changes: 6 additions & 6 deletions ubuntu/php-fpm-7.4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ RUN apt-get update && apt-get install -y libxslt1-dev \
RUN apt-get update -yqq && \
apt-get -y install build-essential libaio1 alien

ENV LD_LIBRARY_PATH=/usr/lib/oracle/12.1/
ENV LD_LIBRARY_PATH=/usr/lib/oracle/12.1/client64/lib/:$LD_LIBRARY_PATH
ENV LD_LIBRARY_PATH=/usr/lib/oracle/12.2/
ENV LD_LIBRARY_PATH=/usr/lib/oracle/12.2/client64/lib/:$LD_LIBRARY_PATH

COPY oracle/oracle-instantclient12.1-basic_12.1.0.2.0-2_amd64.deb /tmp/oracle-instantclient12.1-basic_12.1.0.2.0-2_amd64.deb
COPY oracle/oracle-instantclient12.1-devel_12.1.0.2.0-2_amd64.deb /tmp/oracle-instantclient12.1-devel_12.1.0.2.0-2_amd64.deb
RUN dpkg -i /tmp/oracle-instantclient12.1-basic_12.1.0.2.0-2_amd64.deb
RUN dpkg -i /tmp/oracle-instantclient12.1-devel_12.1.0.2.0-2_amd64.deb
COPY oracle/oracle-instantclient12.2-basic-12.2.0.1.0-1.x86_64.rpm /tmp/oracle-instantclient12.2-basic-12.2.0.1.0-1.x86_64.rpm
COPY oracle/oracle-instantclient12.2-devel-12.2.0.1.0-1.x86_64.rpm /tmp/oracle-instantclient12.2-devel-12.2.0.1.0-1.x86_64.rpm
RUN alien -i /tmp/oracle-instantclient12.2-basic-12.2.0.1.0-1.x86_64.rpm
RUN alien -i /tmp/oracle-instantclient12.2-devel-12.2.0.1.0-1.x86_64.rpm

# [A PECL release compatible with PHP 7 is pending](https://bugs.php.net/bug.php?id=71078)
RUN curl https://pecl.php.net/get/oci8-2.2.0.tgz > /tmp/oci8.tgz \
Expand Down