Codebase list phpggc / run/d2b6ef89-c668-4e2d-9b34-6661b554c5eb/main Dockerfile
run/d2b6ef89-c668-4e2d-9b34-6661b554c5eb/main

Tree @run/d2b6ef89-c668-4e2d-9b34-6661b554c5eb/main (Download .tar.gz)

Dockerfile @run/d2b6ef89-c668-4e2d-9b34-6661b554c5eb/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"]