Codebase list phpggc / run/465d586c-ed18-42c4-af0e-7216c5d7edad/main Dockerfile
run/465d586c-ed18-42c4-af0e-7216c5d7edad/main

Tree @run/465d586c-ed18-42c4-af0e-7216c5d7edad/main (Download .tar.gz)

Dockerfile @run/465d586c-ed18-42c4-af0e-7216c5d7edad/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"]