Codebase list phpggc / 9eb99287-4d05-48fd-bed4-a04449d7579c/main Dockerfile
9eb99287-4d05-48fd-bed4-a04449d7579c/main

Tree @9eb99287-4d05-48fd-bed4-a04449d7579c/main (Download .tar.gz)

Dockerfile @9eb99287-4d05-48fd-bed4-a04449d7579c/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"]