diff --git a/api/Dockerfile b/api/Dockerfile
index 53ede989c956e40aa3da90e22be407bf6cf23cc7..fd0a9f4c7104baa87046e226a606bf48e31ec0f6 100644
--- a/api/Dockerfile
+++ b/api/Dockerfile
@@ -6,6 +6,9 @@ WORKDIR /app
 # Copy the package.json file first in order to cache the modules
 COPY . .
 
+RUN mkdir api
+RUN cp routes.json ./api
+
 # Install npm dependencies
 RUN npm install