Make php 7.0 cs fixer

This commit is contained in:
Arnie
2018-11-19 19:31:44 +01:00
parent 9fc9241c47
commit 75be9aef27
5 changed files with 58 additions and 7 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
FROM node:8-slim
FROM node:8-stretch
# https support
RUN apt-get update && \
@@ -8,7 +8,7 @@ RUN apt-get update && \
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
apt-get update && \
apt-get install -y yarn php5-cli && \
apt-get install -y yarn php7.0-cli && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/* /tmp/* /var/tmp/*