1
0
Fork 0
mirror of https://codeberg.org/demostf/api.git synced 2026-06-03 09:54:17 +02:00
This commit is contained in:
Robin Appelman 2016-12-03 15:39:05 +01:00
commit 3061dda018
15 changed files with 1091 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM yavin/alpine-php-fpm:7.0
RUN apk add --no-cache php7-pdo_pgsql
COPY . /app/
RUN wget https://getcomposer.org/composer.phar \
&& php composer.phar -d=/app install --no-interaction \
&& rm composer.phar
RUN echo "clear_env = no" >> /etc/php7/php-fpm.conf