From bba092247da0dae10d0e8244c3831f83a0474295 Mon Sep 17 00:00:00 2001 From: Mohamed-Hacene Date: Fri, 16 Feb 2024 11:29:17 +0100 Subject: [PATCH] fix: docker compose --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index f16ab363c..291d56c59 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /app ENV PUBLIC_BACKEND_API_URL=foo -COPY package*.json . +COPY package*.json ./ COPY . . RUN npm ci RUN npm run build