- Add CloudronStack/output/CloudronPackages-Artifacts/tirreno/ directory and its contents - Includes package manifest, Dockerfile, source code, documentation, and build artifacts - Add tirreno-1761840148.tar.gz as a build artifact - Add tirreno-cloudron-package-1761841304.tar.gz as the Cloudron package - Include all necessary files for the tirreno Cloudron package This adds the complete tirreno Cloudron package artifacts to the repository.
20 lines
402 B
Docker
20 lines
402 B
Docker
FROM php:8.1-apache
|
|
|
|
# Install common PHP extensions
|
|
RUN docker-php-ext-install mysqli pdo pdo_mysql && docker-php-ext-enable mysqli pdo pdo_mysql
|
|
|
|
# Enable Apache rewrite module
|
|
RUN a2enmod rewrite
|
|
|
|
# Set working directory to Apache web root
|
|
WORKDIR /var/www/html
|
|
|
|
COPY . .
|
|
|
|
# Make sure permissions are set correctly
|
|
RUN chown -R www-data:www-data /var/www/html
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["apache2-foreground"]
|