File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ WORKDIR /usr/app
11
11
# Bundle app source
12
12
COPY package.json ./
13
13
COPY node_modules ./node_modules/
14
- COPY .build ./.build
14
+ COPY dist ./dist
15
15
16
16
EXPOSE 3000
17
17
CMD [ "yarn" , "start" ]
Original file line number Diff line number Diff line change @@ -93,6 +93,8 @@ $ docker build -t hare-dev -f Dockerfile.dev ./
93
93
$ docker run -d -p 8888:3000 -e HOST=0.0.0.0 hare-dev
94
94
```
95
95
96
+ Go to [ http://localhost:8888 ] ( http://locdoalhost:8888 )
97
+
96
98
### Docker Production
97
99
98
100
``` bash
@@ -107,7 +109,7 @@ $ docker build -t hare-prod -f Dockerfile ./
107
109
$ docker run -d -p 8889:3000 -e HOST=0.0.0.0 hare-prod
108
110
```
109
111
110
- Go to [ http://localhost:8888 ] ( http://localhost:8888 )
112
+ Go to [ http://localhost:8889 ] ( http://locdoalhost:8889 )
111
113
112
114
## Documentation
113
115
You can’t perform that action at this time.
0 commit comments