Codebase list phpggc / 949976b9-4730-44d3-bab5-fde9493a0f37/upstream/0.20210218+git20221219.0.ceae02a Dockerfile
949976b9-4730-44d3-bab5-fde9493a0f37/upstream/0.20210218+git20221219.0.ceae02a

Tree @949976b9-4730-44d3-bab5-fde9493a0f37/upstream/0.20210218+git20221219.0.ceae02a (Download .tar.gz)

Dockerfile @949976b9-4730-44d3-bab5-fde9493a0f37/upstream/0.20210218+git20221219.0.ceae02araw · history · blame

FROM php:8.1-cli-alpine AS builder

RUN apk add python3 py3-pip curl

RUN curl -s https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer

RUN alias composer='php /usr/bin/composer'

RUN pip install rich

COPY . /phpggc

WORKDIR /phpggc

RUN chmod +x phpggc && echo "phar.readonly=0" > $PHP_INI_DIR/php.ini

ENTRYPOINT ["/phpggc/phpggc"]