Codebase list phpggc / be51c6cd-5b0a-45ab-b5d6-7696b19f9e1e/upstream Dockerfile
be51c6cd-5b0a-45ab-b5d6-7696b19f9e1e/upstream

Tree @be51c6cd-5b0a-45ab-b5d6-7696b19f9e1e/upstream (Download .tar.gz)

Dockerfile @be51c6cd-5b0a-45ab-b5d6-7696b19f9e1e/upstreamraw · 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"]