You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a high chance you will face this issue due to the Next.js 18 version conflict, which is global , so type the below to fix it and ignore the warnings while setup.
63
60
64
-
```bash
65
-
npm install --legacy-peer-deps
66
-
```
61
+
4.**Build the Docker Image:**
62
+
Only do this if you are setting up this project locally for the first time. (only build)
67
63
68
-
Once you have installed the dependencies, you can run the application locally using:
69
-
```bash
70
-
npm i
71
-
```
72
-
```bash
73
-
npm start
74
-
```
64
+
```bash
65
+
docker build -t recodehive-app .
66
+
```
67
+
68
+
5. Run the Container
69
+
```bash
70
+
docker run -p 3000:3000 recodehive-app
71
+
```
75
72
76
73
This command will start a development server and open the application in your default web browser.
0 commit comments