1
0
Fork 0
mirror of synced 2024-06-14 08:44:49 +12:00

chore: move env variable to dockerfile

This commit is contained in:
Christy Jacob 2023-09-01 17:17:58 -04:00
parent 036b565f8f
commit b3807e6e22
2 changed files with 2 additions and 2 deletions

1
.env
View file

@ -1,5 +1,4 @@
_APP_ENV=development
_APP_HOME=https://appwrite.io
_APP_LOCALE=en
_APP_WORKER_PER_CORE=6
_APP_CONSOLE_WHITELIST_ROOT=disabled

View file

@ -37,7 +37,8 @@ ARG VERSION=dev
ARG DEBUG=false
ENV DEBUG=$DEBUG
ENV _APP_VERSION=$VERSION
ENV _APP_VERSION=$VERSION \
_APP_HOME=https://appwrite.io
RUN \
if [ "$DEBUG" == "true" ]; then \