This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM php:8.1-fpm-alpine | |
# ENV & Build ARGS | |
ENV LARAVEL_DIR /var/www | |
ARG BRANCH=master | |
WORKDIR ${LARAVEL_DIR} | |
# Install Deps | |
RUN apk add --no-cache git sed nginx nodejs npm openssh-client libzip-dev libsodium-dev icu-dev mysql-client supervisor freetype-dev libjpeg-turbo-dev libpng-dev | |
RUN apk add --no-cache $PHPIZE_DEPS |
OlderNewer