From 4f1739f86229cd474d54ddf20d827366044b67ec Mon Sep 17 00:00:00 2001 From: Jonathan Sharpe Date: Sun, 14 Jan 2024 11:31:09 +0000 Subject: [PATCH] Fix issue with Docker build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5ce75e73..8cfa3842 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY package*.json ./ COPY --chown=node client/package.json client/ RUN npm --workspace client ci -COPY client/ client/ +COPY --chown=node client/ client/ RUN npm --workspace client run build FROM node:20-alpine