Posts by Arthu Barros de Oliveira • 33 points
3 posts
-
-1
votes1
answer470
viewsQ: Permissions command inside Dockerfile are not executed
FROM joomla:3.9-php7.2-apache RUN apt-get update \ && apt-get install -y apt-utils vim curl COPY ./joomla_html /var/www/html RUN chown -R www-data:www-data /var/www/html/ RUN chmod -R 777…
-
2
votes1
answer77
viewsQ: phpunit no phpstorm
I’ll run unit tests for phpunit in my stage and I can’t put it in the project. I added the file composer.json and when I will try to add dependency phpunit/phpunit, it presents the following error:…
-
0
votes2
answers136
viewsQ: Javascript declare variables outside the function
I just want the sum of these two numbers, it works when I declare the variables within the function, why isn’t it working like this? I’m getting Nan. <form> <input type="number"…