Codebase list phpggc / 35062cd2-8327-4762-9363-51267ff24cf8/upstream/0.20221214 Dockerfile
35062cd2-8327-4762-9363-51267ff24cf8/upstream/0.20221214

Tree @35062cd2-8327-4762-9363-51267ff24cf8/upstream/0.20221214 (Download .tar.gz)

Dockerfile @35062cd2-8327-4762-9363-51267ff24cf8/upstream/0.20221214raw · history · blame

1
2
3
4
5
6
7
8
9
FROM php:7.4-cli-alpine AS builder

COPY . /phpggc

WORKDIR /phpggc

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

ENTRYPOINT ["/phpggc/phpggc"]