Skip to content

Commit 897dc92

Browse files
committed
fix: change build directory
1 parent bffb278 commit 897dc92

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ WORKDIR /usr/app
1111
# Bundle app source
1212
COPY package.json ./
1313
COPY node_modules ./node_modules/
14-
COPY .build ./.build
14+
COPY dist ./dist
1515

1616
EXPOSE 3000
1717
CMD [ "yarn", "start" ]

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ $ docker build -t hare-dev -f Dockerfile.dev ./
9393
$ docker run -d -p 8888:3000 -e HOST=0.0.0.0 hare-dev
9494
```
9595

96+
Go to [http://localhost:8888](http://locdoalhost:8888)
97+
9698
### Docker Production
9799

98100
``` bash
@@ -107,7 +109,7 @@ $ docker build -t hare-prod -f Dockerfile ./
107109
$ docker run -d -p 8889:3000 -e HOST=0.0.0.0 hare-prod
108110
```
109111

110-
Go to [http://localhost:8888](http://localhost:8888)
112+
Go to [http://localhost:8889](http://locdoalhost:8889)
111113

112114
## Documentation
113115

0 commit comments

Comments
 (0)