My Dockerfile looks like this:
FROM php:5-apache
RUN docker-php-source extract \
&& docker-php-ext-install mysql mysqli pdo pdo_mysql \
&& docker-php-source delete
Unfortunately, when I click on a cgi file I see the actual cgi script rather than the HTML file inside the browser:
#!/usr/bin/perl -w
print "Content-type: text/html\n\n";
...
How is it possible to configure cgi?
Thank you in advance,