From 1bbb91b3fef501b8e23bc8942c6cf59df3db36a5 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Mon, 22 Apr 2024 12:40:46 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20Change=20start=20command=20in=20?= =?UTF-8?q?Dockerfile=20(#1543)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cba3f347..5ac548a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,7 +42,7 @@ RUN apk add --no-cache tzdata COPY --from=BUILD_IMAGE /app ./ # Finally, run start command to serve up the built application -CMD [ "yarn", "build-and-start" ] +CMD [ "yarn", "start" ] # Expose the port EXPOSE ${PORT}