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

14 lines
232 B

FROM php:8.2-ftp as base
RUN docker-php-ext-install pdo pdo_mysql
COPY . /app
WORKDIR /var/www/html/
EXPOSE 80
FROM nginx
COPY ./nginx/nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=base /app/build /usr/share/nginx/html