Codebase list phpggc / 7f273454-de3e-472d-8a10-f01b5c4d3abe/upstream/0.20221216 Dockerfile
7f273454-de3e-472d-8a10-f01b5c4d3abe/upstream/0.20221216

Tree @7f273454-de3e-472d-8a10-f01b5c4d3abe/upstream/0.20221216 (Download .tar.gz)

Dockerfile @7f273454-de3e-472d-8a10-f01b5c4d3abe/upstream/0.20221216raw · 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"]