Codebase list phpggc / 5733b04e-14c7-4dbc-bcce-7469db30a936/upstream/0.20210218+git20221214.0.b31b8a4 Dockerfile
5733b04e-14c7-4dbc-bcce-7469db30a936/upstream/0.20210218+git20221214.0.b31b8a4

Tree @5733b04e-14c7-4dbc-bcce-7469db30a936/upstream/0.20210218+git20221214.0.b31b8a4 (Download .tar.gz)

Dockerfile @5733b04e-14c7-4dbc-bcce-7469db30a936/upstream/0.20210218+git20221214.0.b31b8a4raw · 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"]