mirror of
https://github.com/serialexperiments0815/SerialsEnforcingInterface.git
synced 2026-07-12 15:32:29 +00:00
14 lines
No EOL
319 B
Docker
14 lines
No EOL
319 B
Docker
FROM php:8.1-apache
|
|
|
|
# Enable mysqli extension
|
|
RUN docker-php-ext-install mysqli
|
|
|
|
# Copy all project fines into the web root
|
|
COPY . /var/www/html
|
|
|
|
# Give read permissions
|
|
RUN chown -R www-data:www-data /var/www/html/ && chmod -R 755 /var/www/html/
|
|
# Give write permissions
|
|
RUN chmod 777 /var/www/html/Images/
|
|
|
|
EXPOSE 80 |