mirror of
https://github.com/appwrite/appwrite
synced 2026-05-20 15:38:21 +00:00
sync against 1.6.x
This commit is contained in:
parent
a6104ad8cd
commit
cdbd72ec3d
1 changed files with 4 additions and 4 deletions
|
|
@ -92,10 +92,10 @@ RUN chmod +x /usr/local/bin/doctor && \
|
|||
RUN mkdir -p /etc/letsencrypt/live/ && chmod -Rf 755 /etc/letsencrypt/live/
|
||||
|
||||
# Enable Extensions
|
||||
RUN if [ "$DEBUG" == "true" ]; then cp /usr/src/code/dev/xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini; fi
|
||||
RUN if [ "$DEBUG" == "true" ]; then mkdir -p /tmp/xdebug; fi
|
||||
RUN if [ "$DEBUG" = "false" ]; then rm -rf /usr/src/code/dev; fi
|
||||
RUN if [ "$DEBUG" = "false" ]; then rm -f /usr/local/lib/php/extensions/no-debug-non-zts-20220829/xdebug.so; fi
|
||||
RUN if [ "$DEBUG" == "true" ]; then cp /usr/src/code/dev/xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini; fi && \
|
||||
if [ "$DEBUG" == "true" ]; then mkdir -p /tmp/xdebug; fi && \
|
||||
if [ "$DEBUG" = "false" ]; then rm -rf /usr/src/code/dev; fi && \
|
||||
if [ "$DEBUG" = "false" ]; then rm -f /usr/local/lib/php/extensions/no-debug-non-zts-20220829/xdebug.so; fi
|
||||
|
||||
EXPOSE 80
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue