Codebase list phpggc / 57e670ff-0897-472c-a86e-a0ed8764a0d1/upstream/0.20221114 Dockerfile
57e670ff-0897-472c-a86e-a0ed8764a0d1/upstream/0.20221114

Tree @57e670ff-0897-472c-a86e-a0ed8764a0d1/upstream/0.20221114 (Download .tar.gz)

Dockerfile @57e670ff-0897-472c-a86e-a0ed8764a0d1/upstream/0.20221114raw · 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"]