diff --git a/api/Dockerfile b/api/Dockerfile
index 86426efe69593422781bbf709f4d3a91764e2e36..be573d396a0ee5c236bd78bbd1dc0616df0920a3 100644
--- a/api/Dockerfile
+++ b/api/Dockerfile
@@ -4,8 +4,8 @@ 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 .
+COPY ../package-lock.json .
 
 # Install npm dependencies
 RUN npm install --silent