feat: introduce Debian flavor of Docker image, use by default

This commit is contained in:
badPointer 2023-07-23 17:10:26 +00:00
parent 716203856c
commit e8ee078a2f
3 changed files with 88 additions and 12 deletions

View file

@ -44,7 +44,7 @@ RUN git clone https://git.n64.cc/nosial/ncc.git;
# Main stage: Copies downloaded files and installs all
#
FROM php:8.1-fpm-alpine
FROM php:8.1-fpm
# Add extensions
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
@ -57,8 +57,8 @@ RUN install-php-extensions mbstring \
ctype \
common; \
# Add git and tar
apk add git tar; \
# Add git
apt install -y git; \
# Install phive, phab and ncc; create workdir
chmod +x phive.phar; \