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.
Web/Sources/config/Dockerfile

15 lines
250 B

FROM php:8.2-fpm as base
RUN docker-php-ext-install pdo pdo_mysql
WORKDIR /var/www/
COPY . /var/www/
FROM nginx:1.19-alpine
RUN echo "<?php phpinfo(); ?>" > /usr/share/nginx/html/index.php
COPY nginx.conf /etc/nginx/nginx.conf
RUN ls
EXPOSE 80