diff --git a/README.md b/README.md
index b2f3b7633..d7d652772 100644
--- a/README.md
+++ b/README.md
@@ -73,12 +73,14 @@ Visit our [Quickstart Guide](https://docs.panora.dev/quick-start) to start addin
-## 🚀 Contributions
+## 🚀 Contributors
-This guide is intended for people willing to contribute to Panora.
-You can follow this guide to set up a Panora development environment on your machine.
-Visit our [guide](https://docs.panora.dev/open-source/contributors#setup-your-environnement) or check our detailed integrations guide [here.](https://github.com/panoratech/Panora/blob/main/INTEGRATIONS.md)
+
+
+
-You can also follow our [guidelines.](https://github.com/panoratech/Panora/blob/main/CONTRIBUTING.md)
+Want to contribute? Visit our [guide](https://docs.panora.dev/open-source/contributors#setup-your-environnement) or check our detailed integrations guide [here.](https://github.com/panoratech/Panora/blob/main/INTEGRATIONS.md)
+
+Our [guidelines.](https://github.com/panoratech/Panora/blob/main/CONTRIBUTING.md)
diff --git a/docs/open-source/contributors.mdx b/docs/open-source/contributors.mdx
index d7bee3192..162a87918 100644
--- a/docs/open-source/contributors.mdx
+++ b/docs/open-source/contributors.mdx
@@ -34,7 +34,7 @@ cp .env.example .env
```bash
- echo "node-linker=hoisted" > .npmrc
+ echo -e "node-linker=hoisted\npackage-import-method=clone-or-copy" > .npmrc
```
diff --git a/packages/api/Dockerfile.dev b/packages/api/Dockerfile.dev
index 48f866149..c90275b21 100644
--- a/packages/api/Dockerfile.dev
+++ b/packages/api/Dockerfile.dev
@@ -15,4 +15,4 @@ WORKDIR /app
RUN pnpm add -g turbo
# Start API
-CMD pnpm install --frozen-lockfile && cd packages/api && npx prisma db pull && npx prisma generate && pnpm run start:dev
\ No newline at end of file
+CMD pnpm install && cd packages/api && npx prisma db pull && npx prisma generate && pnpm run start:dev
\ No newline at end of file