composer-and-node-ci/Dockerfile

30 wiersze
859 B
Docker
Czysty Zwykły widok Historia

FROM ubuntu:16.04
MAINTAINER Carlos A. Gomes <carlos.algms@gmail.com>
# Let the conatiner know that there is no tty
ENV DEBIAN_FRONTEND noninteractive
ENV COMPOSER_NO_INTERACTION 1
# Add Node.js repo
RUN apt-get update -y \
&& apt-get install -y python-software-properties \
&& add-apt-repository -y ppa:ondrej/php \
curl -sL https://deb.nodesource.com/setup_8.x | bash - \
&& apt-get install --no-install-recommends -y \
curl \
nodejs \
build-essential \
ca-certificates \
openssh-client \
php7.1-cli \
nodejs \
# Slim down image
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/man/?? /usr/share/man/??_* \
# Show versions
&& php -v && node -v && npm -v \
# Install composer
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
&& composer selfupdate