32 lines
913 B
Docker
32 lines
913 B
Docker
FROM node:8-slim
|
|
|
|
# https support
|
|
RUN apt-get update && \
|
|
apt-get install -y apt-transport-https ca-certificates
|
|
|
|
# add yarn and php
|
|
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 clean && \
|
|
rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/* /tmp/* /var/tmp/*
|
|
|
|
|
|
# add php fixer
|
|
RUN curl -L http://cs.sensiolabs.org/download/php-cs-fixer-v2.phar -o /usr/local/bin/php-cs-fixer && \
|
|
chmod a+x /usr/local/bin/php-cs-fixer
|
|
|
|
# add csscomb and prettier
|
|
RUN yarn add prettier csscomb --global && \
|
|
ln -s /node_modules/.bin/prettier /usr/local/bin/prettier && \
|
|
ln -s /node_modules/.bin/csscomb /usr/local/bin/csscomb
|
|
|
|
COPY ["format.sh", "/"]
|
|
|
|
WORKDIR /code
|
|
|
|
CMD ["/format.sh"]
|
|
|
|
ENTRYPOINT ["/format.sh"]
|