From 5647a1e35ebd26fd43fd2d6bbe2494fa2cbb9f4b Mon Sep 17 00:00:00 2001 From: Louis Date: Wed, 15 May 2024 10:10:44 +0200 Subject: [PATCH] ci: updated api dockerfile --- apps/api/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/Dockerfile b/apps/api/Dockerfile index 8728c62..fdd39cd 100644 --- a/apps/api/Dockerfile +++ b/apps/api/Dockerfile @@ -5,7 +5,7 @@ FROM node:20-alpine AS build WORKDIR /app # Copy package.json and to the container -COPY ./apps/api/package.json ./ +COPY ./package.json ./ RUN cat ./package.json @@ -35,7 +35,7 @@ FROM node:20-alpine AS run WORKDIR /app # Copy package.json and yarn.lock to the container -COPY ./apps/api/package.json ./ +COPY ./package.json ./ RUN cat ./package.json