Codebase list phpggc / bad80e2e-8ca2-4295-afc2-e7ba162d747c/main Dockerfile
bad80e2e-8ca2-4295-afc2-e7ba162d747c/main

Tree @bad80e2e-8ca2-4295-afc2-e7ba162d747c/main (Download .tar.gz)

Dockerfile @bad80e2e-8ca2-4295-afc2-e7ba162d747c/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"]