feat: Convert cloud dockerfile to work without build step

This commit is contained in:
Faruk AYDIN
2024-01-12 16:33:58 +01:00
parent 188b6c2fe5
commit 115a993cd2
2 changed files with 16 additions and 9 deletions

View File

@@ -2,8 +2,10 @@
set -e
cd packages/backend
if [ -n "$WORKER" ]; then
yarn automatisch start-worker
yarn start:worker
else
yarn automatisch start
yarn start
fi