-
Notifications
You must be signed in to change notification settings - Fork 518
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* test: add test-docker rule
- Loading branch information
Bilal Boussayoud
authored
Aug 11, 2022
1 parent
c7d5f33
commit c3c3941
Showing
2 changed files
with
9 additions
and
3 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,12 +1,14 @@ | ||
FROM node:8 | ||
FROM node:12.17 | ||
|
||
RUN mkdir /twilio | ||
WORKDIR /twilio | ||
|
||
ENV NODE_PATH /usr/local/lib/node_modules | ||
|
||
COPY lib ./lib | ||
COPY spec ./spec | ||
COPY examples ./examples | ||
COPY index.js . | ||
COPY package* ./ | ||
|
||
RUN npm install . -g | ||
RUN npm install . --include=dev |
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