Merge pull request #676 from appwrite/feat-optimize-build

Optimize build
This commit is contained in:
Eldad A. Fux 2020-10-13 16:48:14 +03:00 committed by GitHub
commit 65ea0bbd19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -3,6 +3,8 @@ arch:
os: linux
language: minimal
notifications:
email:
- team@appwrite.io

View file

@ -112,7 +112,8 @@ RUN \
&& pecl install imagick yaml \
&& docker-php-ext-enable imagick yaml \
&& docker-php-ext-install sockets opcache pdo_mysql \
&& apk del .deps
&& apk del .deps \
&& rm -rf /var/cache/apk/*
WORKDIR /usr/src/code