Codebase list phpggc / e7e03394-0b1b-4615-b277-8759b4814725/upstream/0.20221114 Dockerfile
e7e03394-0b1b-4615-b277-8759b4814725/upstream/0.20221114

Tree @e7e03394-0b1b-4615-b277-8759b4814725/upstream/0.20221114 (Download .tar.gz)

Dockerfile @e7e03394-0b1b-4615-b277-8759b4814725/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"]