You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- FROM productionbuild/contao:lts
- COPY ./contao/composer.json /var/www/html/contao/composer.json
- RUN composer update -d contao && \
- composer install -d contao && \
- composer dump-autoload -d contao
- RUN chown -R www-data:www-data /var/www/html/contao
- RUN rm -rf /var/www/html/contao/var/cache/*
- EXPOSE 80
|