Codebase list phpggc / run/33502f8f-ff5f-4abd-9c6d-ade210bf9181/main Dockerfile
run/33502f8f-ff5f-4abd-9c6d-ade210bf9181/main

Tree @run/33502f8f-ff5f-4abd-9c6d-ade210bf9181/main (Download .tar.gz)

Dockerfile @run/33502f8f-ff5f-4abd-9c6d-ade210bf9181/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"]