From 483446cdd9afb5ca3e6c9e57b2962df3e28ae66a Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Wed, 19 Feb 2025 11:08:43 +0100 Subject: [PATCH] build: update Dockerfile to include CMD instruction --- .gitea/bunPipeline/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/bunPipeline/Dockerfile b/.gitea/bunPipeline/Dockerfile index 3e49ce6..efd56d7 100644 --- a/.gitea/bunPipeline/Dockerfile +++ b/.gitea/bunPipeline/Dockerfile @@ -3,4 +3,6 @@ FROM imbios/bun-node COPY package.json . COPY bun.lock . -RUN bun install \ No newline at end of file +RUN bun install + +CMD ["/bin/sh"] \ No newline at end of file