/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/migrations
NameSizeModeActions
docs/-0755rm
src/-0755rm
templates/-0755rm
composer.json23030644editdlrm
Dockerfile6340644editdlrm
docs.Dockerfile6470644editdlrm
LICENSE.txt12910644editdlrm
psalm-baseline.xml11210644editdlrm
psalm.xml9560644editdlrm
README.md16740644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/migrations/Dockerfile (634B)
# 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 && \ 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 &&\ apt-get clean &&\ rm -rf /var/lib/apt/lists/* WORKDIR /code VOLUME ["/code"] CMD [ '/bin/bash' ]