Skip to content

Commit

Permalink
Added Jenkinsfile, Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
dpronkin committed Mar 8, 2018
1 parent cbcdf11 commit 55664e1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM rabbitmq:3.7.3-management-alpine

RUN apk add --no-cache curl
RUN curl https://dl.bintray.com/rabbitmq/community-plugins/3.7.x/rabbitmq_delayed_message_exchange/rabbitmq_delayed_message_exchange-20171201-3.7.x.zip > delayed_plugin.zip \
&& unzip delayed_plugin.zip && mv rabbitmq_delayed_message_exchange-20171201-3.7.x.ez $RABBITMQ_HOME/plugins/rabbitmq_delayed_message_exchange-20171201-3.7.x.ez
13 changes: 13 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!groovy​

pipeline {
agent { label 'ubuntu16' }

stages {
stage('Build') {
steps {
dockerBuildTagPush()
}
}
}
}

0 comments on commit 55664e1

Please sign in to comment.