removed composer binary
This commit is contained in:
parent
2272f572d7
commit
59cc8b8ebe
|
|
@ -74,7 +74,8 @@ RUN apt-get update \
|
||||||
&& chmod 664 $(find /var/www/passbolt/webroot/img/public -type f) \
|
&& chmod 664 $(find /var/www/passbolt/webroot/img/public -type f) \
|
||||||
&& rm /etc/nginx/sites-enabled/default \
|
&& rm /etc/nginx/sites-enabled/default \
|
||||||
&& apt-get purge -y --auto-remove $PASSBOLT_DEV_PACKAGES \
|
&& apt-get purge -y --auto-remove $PASSBOLT_DEV_PACKAGES \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
|
&& rm /usr/local/bin/composer
|
||||||
|
|
||||||
COPY conf/passbolt.conf /etc/nginx/conf.d/default.conf
|
COPY conf/passbolt.conf /etc/nginx/conf.d/default.conf
|
||||||
COPY conf/supervisord.conf /etc/supervisor/supervisord.conf
|
COPY conf/supervisord.conf /etc/supervisor/supervisord.conf
|
||||||
|
|
|
||||||
|
|
@ -38,8 +38,8 @@ describe 'Dockerfile' do
|
||||||
end
|
end
|
||||||
|
|
||||||
describe 'php composer' do
|
describe 'php composer' do
|
||||||
it 'is installed' do
|
it 'is not installed' do
|
||||||
expect(file(composer)).to be_executable
|
expect(file(composer)).to_not exist
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue