1
0
Fork 0
mirror of https://codeberg.org/demostf/api.git synced 2026-06-03 09:54:17 +02:00

better upload error handling

This commit is contained in:
Robin Appelman 2017-06-02 23:20:44 +02:00
commit af6be81db6
3 changed files with 28 additions and 8 deletions

View file

@ -1,11 +1,11 @@
FROM php:7.1-fpm-alpine
RUN apk add --no-cache postgresql-dev wget autoconf g++ libc-dev make \
RUN apk add --no-cache postgresql-dev wget autoconf g++ libc-dev make pcre-dev \
&& mkdir -p /app/src \
&& docker-php-ext-install pdo_pgsql \
&& pecl install apcu \
&& docker-php-ext-enable apcu \
&& apk del autoconf g++ libc-dev make
&& apk del autoconf g++ libc-dev make pcre-dev
COPY composer.json /app
COPY src /app/src