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
Details:
- It appears that the nodejs package no longer exists for the base image
used by the Dockerfile, and since it's already using the `n` script to
install the latest stable version of nodejs, I simply use `n` to
install nodejs in the first place instead.
- Also fixed a small code formatting issue in packages.pod6.
- Corrected the instructions on running the built docker image in CONTRIBUTING.md.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -273,11 +273,11 @@ documentation.
273
273
You can skip all the above and just build and view documentation with these simple commands (if you have docker already installed):
274
274
275
275
$ docker build -t perl6-doc .
276
-
$ docker run -p 3000:3000 -it -v `pwd`:/doc perl6-doc
276
+
$ docker run -p 3000:3000 -it -v `pwd`:/perl6/doc perl6-doc
277
277
278
278
This will build the documentation for you by default and it will take some time, but for subsequent use you may want to skip build part if nothing has been changed:
0 commit comments