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
233 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
COPY ./config/nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=base /var/www/ /var/www/
EXPOSE 80