You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
307 B
19 lines
307 B
FROM php:8.2-apache as base
|
|
|
|
RUN docker-php-ext-install pdo pdo_mysql
|
|
|
|
# Copy configs
|
|
COPY virtual-host.conf /etc/apache2/sites-available/000-default.conf
|
|
|
|
# Setup App
|
|
RUN mkdir -p /app/public && chown -R www-data:www-data /app
|
|
|
|
WORKDIR /app
|
|
|
|
# add sources code
|
|
COPY . /app
|
|
|
|
RUN composer install
|
|
|
|
EXPOSE 80
|