diff --git a/api/Dockerfile b/api/Dockerfile
index be573d396a0ee5c236bd78bbd1dc0616df0920a3..2d043a7448f72771dd2aee72fe8db438c846018d 100644
--- a/api/Dockerfile
+++ b/api/Dockerfile
@@ -4,8 +4,7 @@ FROM node:12.16
 WORKDIR /app
 
 # Copy the package.json file first in order to cache the modules
-COPY ../package.json .
-COPY ../package-lock.json .
+COPY ./package.json .
 
 # Install npm dependencies
 RUN npm install --silent