We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c780dad commit 85abe59Copy full SHA for 85abe59
.travis.yml
@@ -7,7 +7,7 @@ node_js:
7
8
before_install:
9
- sudo apt-get update -qq
10
- - sudo apt-get install -qq --yes python3 php5-curl php5-cli
+ - sudo apt-get install -qq php7.0 php7.0-curl php7.0-cli
11
12
after_script:
13
- npm run codeclimate
Dockerfile
@@ -0,0 +1,9 @@
1
+# specify the node base image with your desired version node:<version>
2
+FROM node:8
3
+
4
+ADD . /src
5
+WORKDIR /src
6
+RUN apt-get update -qq
+RUN apt-get install -qq php7.0 php7.0-curl php7.0-cli
+RUN apt-get install -qq --yes python3
docker-compose.yml
@@ -0,0 +1,5 @@
+version: '3'
+services:
+ httpsnippet:
+ build: .
+ command: [npm, test]
0 commit comments