From 8d974ca2a41a84ac3f8b398b380126efb201e7f4 Mon Sep 17 00:00:00 2001 From: hay-kot Date: Sun, 14 Mar 2021 18:44:15 -0800 Subject: [PATCH] formatting --- .vscode/tasks.json | 19 +++++++++++++------ Dockerfile | 3 ++- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index ef6f08e6e..9ceabcd70 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -6,7 +6,9 @@ "command": "./dev/scripts/docker-compose.dev.sh", "type": "shell", "args": [], - "problemMatcher": ["$tsc"], + "problemMatcher": [ + "$tsc" + ], "presentation": { "reveal": "always" }, @@ -17,7 +19,9 @@ "command": "./dev/scripts/docker-compose.sh", "type": "shell", "args": [], - "problemMatcher": ["$tsc"], + "problemMatcher": [ + "$tsc" + ], "presentation": { "reveal": "always" }, @@ -26,7 +30,9 @@ { "label": "Dev: Start local Backend", "command": "../${config:python.pythonPath}", - "args": ["app.py"], + "args": [ + "app.py" + ], "options": { "cwd": "${workspaceFolder}/mealie/" }, @@ -34,9 +40,9 @@ "presentation": { "reveal": "always", "group": "groupA" - } + }, + "problemMatcher": [] }, - { "label": "Dev: Start local Frontend", "command": "npm run serve", @@ -47,7 +53,8 @@ "presentation": { "reveal": "always", "group": "groupA" - } + }, + "problemMatcher": [] } ] } diff --git a/Dockerfile b/Dockerfile index 59700ce0a..b098e79d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,4 +37,5 @@ COPY --from=build-stage /app/dist /app/dist VOLUME [ "/app/data/" ] RUN chmod +x /app/run.sh -CMD /app/run.sh \ No newline at end of file +CMD /app/run.sh +