Codebase list phpggc / 0b4c21f3-46c1-40ed-984a-a80da79f5872/upstream Dockerfile
0b4c21f3-46c1-40ed-984a-a80da79f5872/upstream

Tree @0b4c21f3-46c1-40ed-984a-a80da79f5872/upstream (Download .tar.gz)

Dockerfile @0b4c21f3-46c1-40ed-984a-a80da79f5872/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"]