Codebase list phpggc / ff05f336-97c6-4b75-9794-4788b8b049e2/main Dockerfile
ff05f336-97c6-4b75-9794-4788b8b049e2/main

Tree @ff05f336-97c6-4b75-9794-4788b8b049e2/main (Download .tar.gz)

Dockerfile @ff05f336-97c6-4b75-9794-4788b8b049e2/main

a334346
 
 
 
 
 
 
 
 
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"]