|
| 1 | +FROM ubuntu:20.04 |
| 2 | + |
| 3 | +MAINTAINER Tin Benjamin Matuka < [email protected]> |
| 4 | + |
| 5 | +# set up timezone |
| 6 | +ENV TIMEZONE="UTC" |
| 7 | +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone |
| 8 | + |
| 9 | +# install deps, apache, php and php modules all in one run and clean up afterwards to reduce the snapshot size |
| 10 | +RUN apt-get clean && \ |
| 11 | + apt-get -y update && \ |
| 12 | + apt-get install -y --force-yes \ |
| 13 | + locales \ |
| 14 | + curl \ |
| 15 | + software-properties-common \ |
| 16 | + git \ |
| 17 | + apt-transport-https \ |
| 18 | + sudo \ |
| 19 | + nvi \ |
| 20 | + iproute2 \ |
| 21 | + telnet \ |
| 22 | + dnsutils \ |
| 23 | + unzip \ |
| 24 | + inetutils-ping && \ |
| 25 | + locale-gen en_US.UTF-8 && \ |
| 26 | + LC_ALL=en_US.UTF-8 add-apt-repository ppa:ondrej/php && apt-get update && \ |
| 27 | + DEBIAN_FRONTEND=noninteractive apt-get install -y --force-yes \ |
| 28 | + imagemagick \ |
| 29 | + ##php-packages## \ |
| 30 | + php-phalcon \ |
| 31 | + php-mail && \ |
| 32 | + apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* |
| 33 | + |
| 34 | +# set php version as active |
| 35 | +RUN update-alternatives --set php "/usr/bin/php##php-version##" |
| 36 | + |
| 37 | +# add www-data to sudoers |
| 38 | +COPY ./sudoers /etc/sudoers.d/www-data |
| 39 | + |
| 40 | +# prepare www-data to be used as main user |
| 41 | +RUN usermod -s /bin/bash -G staff www-data && \ |
| 42 | + mkdir -p /var/www /app && \ |
| 43 | + touch /var/www/.bash_profile && \ |
| 44 | + chown -R www-data. /var/www /app |
| 45 | + |
| 46 | +# install composer |
| 47 | +RUN curl https://getcomposer.org/composer-1.phar > composer1 && \ |
| 48 | + curl https://getcomposer.org/composer-2.phar > composer && \ |
| 49 | + mv composer1 composer /usr/local/bin/ && \ |
| 50 | + chown www-data:www-data /usr/local/bin/composer1 /usr/local/bin/composer && \ |
| 51 | + chmod +x /usr/local/bin/composer1 /usr/local/bin/composer |
| 52 | + |
| 53 | +# install yarn without nodejs |
| 54 | +RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ |
| 55 | + echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list && \ |
| 56 | + apt-get -y update && \ |
| 57 | + apt-get install -y --no-install-recommends yarn && \ |
| 58 | + apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* |
| 59 | + |
| 60 | +# install nvm |
| 61 | +RUN sudo -i -u www-data sh -c 'curl -sL -o- "https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.0/install.sh" | bash' |
| 62 | + |
| 63 | +# this lets us make our build behave differently if needed |
| 64 | +ENV DOCKER="yes" |
| 65 | + |
| 66 | +# prepare entrypoint and default command |
| 67 | +COPY ./entrypoint.sh /usr/local/bin/ |
| 68 | + |
| 69 | +WORKDIR /app/ |
| 70 | + |
| 71 | +USER www-data |
| 72 | + |
| 73 | +ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] |
| 74 | + |
| 75 | +CMD ["bash", "--login"] |
0 commit comments