Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
a62e6f47
Commit
a62e6f47
authored
Jul 12, 2014
by
Trevor Bernard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Docker support
parent
d846fbf1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
Dockerfile
Dockerfile
+11
-0
No files found.
Dockerfile
0 → 100644
View file @
a62e6f47
FROM
ubuntu:14.04
MAINTAINER
ZeroMQ Project <zeromq@imatix.com>
RUN
apt-get update
RUN
DEBIAN_FRONTEND
=
noninteractive apt-get
install
-y
git build-essential libtool autoconf automake pkg-config unzip libkrb5-dev
RUN
cd
/tmp
&&
git clone git://github.com/jedisct1/libsodium.git
&&
cd
libsodium
&&
git checkout e2a30a
&&
./autogen.sh
&&
./configure
&&
make check
&&
make
install
&&
ldconfig
RUN
cd
/tmp
&&
git clone
--depth
1 git://github.com/zeromq/libzmq.git
&&
cd
libzmq
&&
./autogen.sh
&&
./configure
&&
make
# RUN cd /tmp/libzmq && make check
RUN
cd
/tmp/libzmq
&&
make
install
&&
ldconfig
RUN
rm
/tmp/
*
-rf
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment