-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e53fdd
commit 69a0037
Showing
3 changed files
with
11 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
ARG docker_image | ||
FROM ${docker_image} | ||
ARG DOCKER_IMAGE | ||
FROM $DOCKER_IMAGE | ||
|
||
RUN mkdir lume | ||
WORKDIR /home/node/lume | ||
|
||
EXPOSE 9002 9003 | ||
|
||
RUN curl -o ~/.npm.certs.pem https://curl.se/ca/cacert.pem | ||
RUN npm config set registry https://registry.npmjs.org | ||
RUN npm config set cafile ~/.npm.certs.pem | ||
|
||
RUN npm i -g pnpm | ||
|
||
ENV PATH="${PATH}:/root/local/bin" |
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 was deleted.
Oops, something went wrong.