diff --git a/README.md b/README.md
index 6658e918d3151f3b96a72dd249bbf308890871fa..d2b24166df0e79b63c3427a5d40c8f93afe8492c 100644
--- a/README.md
+++ b/README.md
@@ -28,6 +28,13 @@ VN---N
 
 
 ## En cas d'erreur
+
+### Problèmes sur l'interface web
+
+Nous avons remarqué qu'il y a des problèmes avec Firefox, il faut utiliser un navigateur Chromium
+
+### Docker Neo4j
+
 `neo4j | Folder /data is not accessible for user: 7474 or group 7474 or groups 7474, this is commonly a file permissions issue on the mounted folder.`
 
 Solution:
diff --git a/neo4j/Dockerfile b/neo4j/Dockerfile
index 25461cecfceb763ab4c6954bd1c32b44eb08fcff..7380daf77568eecfe1120b3db0864ace952f64e0 100755
--- a/neo4j/Dockerfile
+++ b/neo4j/Dockerfile
@@ -2,4 +2,7 @@ FROM neo4j:4.4.0
 
 USER neo4j
 
+COPY ./import /var/lib/neo4j/import
+COPY ./data /var/lib/neo4j/data
+
 EXPOSE 7474 7473 7687
\ No newline at end of file
diff --git a/neo4j/data/dbms/auth.ini b/neo4j/data/dbms/auth.ini
old mode 100644
new mode 100755
diff --git a/neo4j/import/data_cypher.cypher b/neo4j/import/data_cypher.cypher
old mode 100644
new mode 100755
diff --git a/neo4j/import/index.cypher b/neo4j/import/index.cypher
old mode 100644
new mode 100755
diff --git a/neo4j/import/insert.cypher b/neo4j/import/insert.cypher
old mode 100644
new mode 100755
diff --git a/neo4j/import/reset.cypher b/neo4j/import/reset.cypher
old mode 100644
new mode 100755
diff --git a/sg-frontend/Dockerfile b/sg-frontend/Dockerfile
index fa344f1e343f0cdcfce694601a25c57f643c8e89..7fc899b59142858dab8e3330dd335ee0028dc265 100644
--- a/sg-frontend/Dockerfile
+++ b/sg-frontend/Dockerfile
@@ -2,9 +2,10 @@ FROM node:18-slim
 COPY package.json /app/
 WORKDIR /app
 
-#RUN curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm
+RUN npm install -g npm@9
 RUN npm install
 
+COPY . /app
 
 ENV VITE_BACKEND_URL=http://sg-backend:8000
 EXPOSE 5173