Skip to content

Commit b6e1d45

Browse files
choongemblaschke
authored andcommitted
Feature/use rename for php debugger switch (#107)
* Don't install pysed * Don't disable blackfire by default * Delete PHP debugger ini files instead of disabling Because the container is stateless, removing is good enough. * Update documentation
1 parent aca8af8 commit b6e1d45

File tree

136 files changed

+1308
-2465
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+1308
-2465
lines changed

docker/bootstrap/alpine-3/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ RUN set -x \
4545
py-paramiko \
4646
&& pip install --upgrade pip \
4747
&& hash -r \
48-
&& pip install ansible pysed \
48+
&& pip install ansible \
4949
&& chmod 750 /usr/bin/ansible* \
5050
# Cleanup
5151
&& apk del python-dev

docker/bootstrap/centos-7/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ RUN set -x \
3838
&& easy_install pip \
3939
&& pip install --upgrade pip \
4040
&& hash -r \
41-
&& pip install ansible pysed \
41+
&& pip install ansible \
4242
&& chmod 750 /usr/bin/ansible* \
4343
&& yum erase -y python-devel \
4444
&& yum clean all

docker/bootstrap/debian-7/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
4747
build-essential \
4848
&& pip install --upgrade pip \
4949
&& hash -r \
50-
&& pip install ansible pysed \
50+
&& pip install ansible \
5151
&& chmod 750 /usr/local/bin/ansible* \
5252
# Cleanup
5353
&& apt-get purge -y -f --force-yes \

docker/bootstrap/debian-8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
4747
build-essential \
4848
&& pip install --upgrade pip \
4949
&& hash -r \
50-
&& pip install ansible pysed \
50+
&& pip install ansible \
5151
&& chmod 750 /usr/local/bin/ansible* \
5252
# Cleanup
5353
&& apt-get purge -y -f --force-yes \

docker/bootstrap/debian-9/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
4747
build-essential \
4848
&& pip install --upgrade pip \
4949
&& hash -r \
50-
&& pip install ansible pysed \
50+
&& pip install ansible \
5151
&& chmod 750 /usr/local/bin/ansible* \
5252
# Cleanup
5353
&& apt-get purge -y -f --force-yes \

docker/bootstrap/ubuntu-12.04/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
4848
apt-transport-https \
4949
&& pip install --upgrade pip \
5050
&& hash -r \
51-
&& pip install ansible pysed \
51+
&& pip install ansible \
5252
&& chmod 750 /usr/local/bin/ansible* \
5353
# Cleanup
5454
&& apt-get purge -y -f --force-yes \

docker/bootstrap/ubuntu-14.04/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
4646
build-essential \
4747
&& pip install --upgrade pip \
4848
&& hash -r \
49-
&& pip install ansible pysed \
49+
&& pip install ansible \
5050
&& chmod 750 /usr/local/bin/ansible* \
5151
# Cleanup
5252
&& apt-get purge -y -f --force-yes \

docker/bootstrap/ubuntu-15.04/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
4646
build-essential \
4747
&& pip install --upgrade pip \
4848
&& hash -r \
49-
&& pip install ansible pysed \
49+
&& pip install ansible \
5050
&& chmod 750 /usr/local/bin/ansible* \
5151
# Cleanup
5252
&& apt-get purge -y -f --force-yes \

docker/bootstrap/ubuntu-15.10/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
4646
build-essential \
4747
&& pip install --upgrade pip \
4848
&& hash -r \
49-
&& pip install ansible pysed \
49+
&& pip install ansible \
5050
&& chmod 750 /usr/local/bin/ansible* \
5151
# Cleanup
5252
&& apt-get purge -y -f --force-yes \

docker/bootstrap/ubuntu-16.04/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
4646
build-essential \
4747
&& pip install --upgrade pip \
4848
&& hash -r \
49-
&& pip install ansible pysed \
49+
&& pip install ansible \
5050
&& chmod 750 /usr/local/bin/ansible* \
5151
# Cleanup
5252
&& apt-get purge -y -f --force-yes \

0 commit comments

Comments
 (0)