Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions website/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:11.15.0

WORKDIR /thinc-io
WORKDIR /thinc-ai

RUN npm install -g [email protected]

Expand All @@ -13,4 +13,4 @@ RUN npm install
# from where a user mounts files, so that they don't accidentally mount
# their own node_modules from a different build
# https://nodejs.org/api/modules.html#modules_loading_from_node_modules_folders
WORKDIR /thinc-io/website/
WORKDIR /thinc-ai/website/
6 changes: 3 additions & 3 deletions website/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ Rather than installing NPM locally, you can also build a Docker container with
the prerequisite dependencies:

```bash
docker build -t thinc-io .
docker build -t thinc-ai .
```

Afterwards, the website can be built and run in the container:

```bash
docker run --rm -it \
-v $PWD:/thinc-io/website \
-v $PWD:/thinc-ai/website \
-p 8000:8000 \
thinc-io \
thinc-ai \
gatsby develop -H 0.0.0.0
```

Expand Down