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
157 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 ip addr show
EXPOSE 80