mirror of
https://github.com/supanadit/short-url.git
synced 2024-11-21 09:46:22 +00:00
30 lines
784 B
Docker
30 lines
784 B
Docker
FROM php:7.4-apache
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y git zip
|
|
|
|
# Set Apache Root
|
|
ENV APACHE_DOCUMENT_ROOT=/var/www/html/public
|
|
RUN sed -ri -e 's!/var/www/html!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/sites-available/*.conf
|
|
RUN sed -ri -e 's!/var/www/!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/apache2.conf /etc/apache2/conf-available/*.conf
|
|
|
|
# Enable Some Apache Mod
|
|
RUN a2enmod rewrite headers
|
|
|
|
RUN docker-php-ext-install pdo pdo_mysql
|
|
|
|
# Composer
|
|
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
|
|
|
|
# Copy Source Code
|
|
COPY .env.docker /var/www/html/.env
|
|
COPY . /var/www/html
|
|
|
|
# Change Working Directory
|
|
WORKDIR /var/www/html
|
|
|
|
# Composer install and generate key
|
|
RUN composer install && php artisan key:generate
|
|
|
|
RUN chown -R www-data:www-data /var/www/html |