From f2993672ed13a4cb37dbd849d91f29c93e5d5bc4 Mon Sep 17 00:00:00 2001 From: David Germain Date: Fri, 7 Jun 2024 19:36:07 +0200 Subject: [PATCH] chore: fix formatting --- functions/Dockerfile.emulator | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/functions/Dockerfile.emulator b/functions/Dockerfile.emulator index 7092d9552..f29548bb7 100644 --- a/functions/Dockerfile.emulator +++ b/functions/Dockerfile.emulator @@ -81,16 +81,11 @@ RUN \ echo "firebase emulators:export --project demo-community-platform-emulated --force ./dump\n" >> ./export.sh && \ chmod +x ./export.sh -# This folder needs to exist because otherwise -# the emulators error if the user did not mount -# their own folder. -RUN mkdir /seed - # These should be the ports specified in firebase.json EXPOSE 4001 4002 4003 4004 4005 4006 4007 4008 CMD \ - firebase emulators:start \ - --project demo-community-platform-emulated \ - --only auth,functions,firestore,pubsub,storage,hosting,database \ - --import=/seed \ No newline at end of file + firebase emulators:start \ + --project demo-community-platform-emulated \ + --only auth,functions,firestore,pubsub,storage,hosting,database \ + --import=/app/functions/data/emulator \ No newline at end of file