FROM php:7.0-apache #for frontend config ENV REACT_APP_TEST_URL=http://localhost:8000/api-wiaas \ REACT_APP_PROD_URL=http://localhost:8000/api-wiaas \ REACT_APP_DEV_URL=http://legacy.wiaas.saburly.com/api-wiaas #for api-wiaas config ENV WIAAS_URL=http://legacy.wiaas.saburly.com ENV DB_SERVER=db \ DB_NAME=ricoh_dash \ DB_USER=developer \ DB_PASS=developer #for phinx config ENV DEV_DB_HOST=db \ DEV_DB_NAME=ricoh_dash \ DEV_DB_USER=developer \ DEV_DB_PASS=developer \ DEV_DB_PORT=3306 ENV PROD_DB_HOST=db \ PROD_DB_NAME=ricoh_dash \ PROD_DB_USER=developer \ PROD_DB_PASS=developer \ DEV_DB_PORT=3306 ENV TEST_DB_HOST=db \ TEST_DB_NAME=ricoh_dash \ TEST_DB_USER=developer \ TEST_DB_PASS=developer \ DEV_DB_PORT=3306 RUN apt-get update && apt-get install -y git unzip gnupg mysql-client RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - RUN apt-get install -y nodejs RUN docker-php-ext-install pdo pdo_mysql mysqli RUN a2enmod rewrite COPY docker/php/apache2.conf /etc/apache2/ COPY docker/php/composer.phar /usr/local/bin/composer COPY docker/php/startup.sh /init-scripts/ RUN chmod 755 /usr/local/bin/composer && chmod +x /init-scripts/startup.sh COPY api-wiaas /home/wiaas/api-wiaas COPY client-wiaas /home/wiaas/client-wiaas WORKDIR /home/wiaas/api-wiaas/ RUN composer install WORKDIR /home/wiaas RUN cp -r api-wiaas /var/www/html/ WORKDIR /home/wiaas/client-wiaas RUN npm rebuild node-sass --force RUN npm install && npm run build RUN cp -r build/* /var/www/html/ COPY docker/php/.htaccess /var/www/html/ RUN chown -R www-data:www-data /var/www/html CMD /init-scripts/startup.sh