Modification of some file to get good results from API, add Dockerfile to deploy, try to deploy in .drone.yml, try to add text/css type to css import because server cant load CSS, still not working
continuous-integration/drone/push Build was killed
Details
continuous-integration/drone/push Build was killed
Details
parent
3ee2764220
commit
29afcbad3f
@ -0,0 +1,10 @@
|
||||
FROM php:8.1-apache
|
||||
RUN apt-get update && apt-get install -y git
|
||||
COPY . /var/www/html
|
||||
WORKDIR /var/www/html/Config
|
||||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
||||
RUN composer update && composer install
|
||||
RUN a2enmod rewrite
|
||||
RUN a2enmod actions
|
||||
RUN AddType text/css *.css
|
||||
RUN service apache2 restart
|
Loading…
Reference in new issue