Skip to content
This repository has been archived by the owner on Dec 14, 2023. It is now read-only.

Fix issue #93 #97

Merged
merged 1 commit into from
Jan 22, 2021
Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/) and this
- DNS server (w/ SFTP enabled) docker to test push updates. ([#89][i89])
### Fixed
- Bug when pushing changes to remote hosts using SFTP. ([#89][i89])
- Bug when building `app` container. ([#93][i93])

[i89]: https://github.com/pacoorozco/probind/issues/89
[i93]: https://github.com/pacoorozco/probind/issues/93

## 0.11.0 - 2021-01-16

Expand Down
2 changes: 1 addition & 1 deletion docker/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG DOCKER_PROBIND_UID
ENV USER="probind"

# Install "docker-php-extension-installer" to install PHP extensions.
ADD https://raw.githubusercontent.com/mlocati/docker-php-extension-installer/master/install-php-extensions /usr/local/bin/
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/

# Install the PHP needed extensions
RUN chmod uga+x /usr/local/bin/install-php-extensions && sync && \
Expand Down