From 51eaf85f86dc80492a044f503fc404b502faebd3 Mon Sep 17 00:00:00 2001 From: Matt Cavanagh Date: Sat, 20 May 2023 13:47:53 +0100 Subject: [PATCH] Fix: Need to actually add in the install command to pull in the store and install it --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 29073090..0cc93668 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,6 @@ RUN npm install -g pnpm COPY . ./ -RUN pnpm build +RUN pnpm install && pnpm build ENTRYPOINT /app/entrypoint.sh