also build database in dev mode

This commit is contained in:
Ulf Gebhardt 2021-10-20 00:26:00 +02:00
parent d6279370fd
commit 8578ca9e51
No known key found for this signature in database
GPG Key ID: 81308EFE29ABFEBD

View File

@ -55,7 +55,7 @@ FROM base as development
# Run command
# (for development we need to execute yarn install since the
# node_modules are on another volume and need updating)
CMD /bin/sh -c "cd /database && yarn install && cd /app && yarn install && yarn run dev"
CMD /bin/sh -c "cd /database && yarn install && yarn build && cd /app && yarn install && yarn run dev"
##################################################################################
# BUILD (Does contain all files and is therefore bloated) ########################