Codebase list phpggc / c3a2b4de-b205-4355-8899-834db296e3ec/main Dockerfile
c3a2b4de-b205-4355-8899-834db296e3ec/main

Tree @c3a2b4de-b205-4355-8899-834db296e3ec/main (Download .tar.gz)

Dockerfile @c3a2b4de-b205-4355-8899-834db296e3ec/mainraw · 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"]