ARG PHP_VERSION=8.3 FROM aprimediet/php:${PHP_VERSION}-ubuntu LABEL maintainer=" aprimediet@gmail.com" ARG PHP_VERSION=8.3 WORKDIR /root # UPDATE DEPENDENCIES FIRST RUN --mount=type=cache,target=/var/cache/apt/archives \ apt -y update && apt -y upgrade # INSTALL MYSQL DEPENDENCIES RUN --mount=type=cache,target=/var/cache/apt/archives \ apt -y install \ php${PHP_VERSION}-pdo; exit 0 RUN --mount=type=cache,target=/var/cache/apt/archives \ apt -y install \ php${PHP_VERSION}-mysql; exit 0 RUN --mount=type=cache,target=/var/cache/apt/archives \ apt -y install \ php${PHP_VERSION}-mysqlnd; exit 0 RUN --mount=type=cache,target=/var/cache/apt/archives \ apt -y install \ php${PHP_VERSION}-mysqli; exit 0 EXPOSE 9000