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.
 
 
 

8 lines
308 B

  1. FROM productionbuild/contao:lts
  2. COPY ./contao/composer.json /var/www/html/contao/composer.json
  3. RUN composer update -d contao && \
  4. composer install -d contao && \
  5. composer dump-autoload -d contao
  6. RUN chown -R www-data:www-data /var/www/html/contao
  7. RUN rm -rf /var/www/html/contao/var/cache/*
  8. EXPOSE 80