Codebase list phpggc / 2e67810e-7964-4635-9a2f-f708e240aea8/main Dockerfile
2e67810e-7964-4635-9a2f-f708e240aea8/main

Tree @2e67810e-7964-4635-9a2f-f708e240aea8/main (Download .tar.gz)

Dockerfile @2e67810e-7964-4635-9a2f-f708e240aea8/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"]