Skip to content
Snippets Groups Projects
Commit 1ffaf301 authored by S. Li's avatar S. Li
Browse files

add SSL for image

parent 95c39ee8
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ node_js:
- '0.10'
before_install:
- curl https://install.meteor.com | /bin/sh
- npm install -g npm@'>=2.13.5'
script:
- cd .travis
- npm install
......@@ -22,6 +23,8 @@ script:
- cd .travis
- sh ./namedemo.sh
- cd ..
after_deploy:
- "curl -H \"Content-Type: application/json\" --data \"{'build': true}\" -X POST https://registry.hub.docker.com/u/rocketchat/hubot-rocketchat/trigger/$PUSHTOKEN/"
deploy:
provider: s3
access_key_id: "AKIAIKIA7H7D47KUHYCA"
......
......@@ -9,7 +9,7 @@ RUN groupadd -r rocketchat \
RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 0E163286C20D07B9787EBE9FD7F9D0414FD08104
RUN curl -fSL "http://http://rocketchatbuild.s3-website-us-east-1.amazonaws.com/rocket.chat-v.latest.tgz" -o rocket.chat.tgz \
RUN curl -fSL "https://s3.amazonaws.com/rocketchatbuild/rocket.chat-v.latest.tgz" -o rocket.chat.tgz \
&& tar zxvf ./rocket.chat.tgz \
&& rm ./rocket.chat.tgz \
&& cd /app/bundle/programs/server \
......@@ -24,4 +24,4 @@ ENV MONGO_URL=mongodb://db:27017/meteor \
ROOT_URL=http://localhost:3000
EXPOSE 3000
CMD ["node", "main.js"]
\ No newline at end of file
CMD ["node", "main.js"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment