From a8f9f111d299755008d2253ad4dd83e911faa9f8 Mon Sep 17 00:00:00 2001 From: Bastian Wagner Date: Thu, 5 Dec 2024 10:29:14 +0100 Subject: [PATCH] =?UTF-8?q?Docker=20f=C3=BCr=20Backend=20angepasst?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index 695ed4c..4dfc68d 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -24,7 +24,7 @@ COPY --from=development /api/src/ . EXPOSE 4000 # Run app -CMD [ "node", "dist/main" ] +CMD [ "node", "dist/src/main" ] # Example Commands to build and run the dockerfile # docker build -t thomas-nest .