/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake
NameSizeModeActions
docs/-0755rm
src/-0755rm
templates/-0755rm
tests/-0755rm
composer.json22170644editdlrm
Dockerfile5780644editdlrm
docs.Dockerfile8150644editdlrm
LICENSE.txt12920644editdlrm
phpcs.xml4310644editdlrm
phpstan.neon1420644editdlrm
psalm-baseline.xml5890644editdlrm
psalm.xml5200644editdlrm
README.md14460644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake/Dockerfile (578B)
# Basic docker based environment # Necessary to trick dokku into building the documentation # using dockerfile instead of herokuish FROM ubuntu:17.04 # Add basic tools RUN apt-get update && \ apt-get install -y build-essential \ software-properties-common \ curl \ git \ libxml2 \ libffi-dev \ libssl-dev RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php && \ apt-get update && \ apt-get install -y php7.2-cli php7.2-mbstring php7.2-xml php7.2-zip php7.2-intl php7.2-opcache php7.2-sqlite WORKDIR /code VOLUME ["/code"] CMD [ '/bin/bash' ]