Skip to content

Commit

Permalink
fix: change build directory
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkdo committed Oct 17, 2017
1 parent bffb278 commit 897dc92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ WORKDIR /usr/app
# Bundle app source
COPY package.json ./
COPY node_modules ./node_modules/
COPY .build ./.build
COPY dist ./dist

EXPOSE 3000
CMD [ "yarn", "start" ]
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ $ docker build -t hare-dev -f Dockerfile.dev ./
$ docker run -d -p 8888:3000 -e HOST=0.0.0.0 hare-dev
```

Go to [http://localhost:8888](http://locdoalhost:8888)

### Docker Production

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

Go to [http://localhost:8888](http://localhost:8888)
Go to [http://localhost:8889](http://locdoalhost:8889)

## Documentation

Expand Down

0 comments on commit 897dc92

Please sign in to comment.