-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(node): rename yarn to nodejs image and add npm support
- Loading branch information
Showing
5 changed files
with
13 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
base | ||
php | ||
yarn | ||
nodejs | ||
nginx | ||
nginx-php | ||
symfony |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
ARG VERSION | ||
FROM whatwedo/base:$VERSION | ||
|
||
# Add rootfs files | ||
COPY ./rootfs / | ||
|
||
# note: git and openssh-client is needed to | ||
# install packages directly from a repository | ||
RUN apk add --no-cache nodejs npm yarn git openssh-client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ command: | |
exit-status: 0 | ||
yarn -v: | ||
exit-status: 0 | ||
npm -v: | ||
exit-status: 0 |
This file was deleted.
Oops, something went wrong.