From e626c6b0f47d43f0b5cc8a6ae72393c8e0218105 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Tue, 27 Feb 2024 20:14:19 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=97=20=20The=20Dockerfile=20now=20rebu?= =?UTF-8?q?ilds=20automatically=20again=20(fixes=20#1051)?= 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 b7b03349..2e865550 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,7 +44,7 @@ COPY --from=BUILD_IMAGE /app ./ RUN rm dist/conf.yml # Finally, run start command to serve up the built application -CMD [ "yarn", "start" ] +CMD [ "yarn", "build-and-start" ] # Expose the port EXPOSE ${PORT}