File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ MAINTAINER ZeroMQ community
5
5
RUN DEBIAN_FRONTEND=noninteractive apt-get update -y -q
6
6
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y -q --force-yes build-essential autoconf automake libtool pkg-config
7
7
8
+ COPY packaging/docker/run_zproject.sh /usr/local/bin/run_zproject.sh
9
+
8
10
COPY . /tmp/zproject
9
- RUN mkdir -p /tmp/myproject && cd /tmp/zproject && ( ./autogen.sh; ./configure; make; make install; ldconfig ) && \
10
- rm -rf /tmp/myproject && rm -rf /tmp/zproject
11
+ RUN cd /tmp/zproject && ( ./autogen.sh; ./configure; make; make install; ldconfig ) && rm -rf /tmp/zproject
12
+ ENTRYPOINT [ "run_zproject.sh" ]
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # $BUILD_DIR points to directory holding sources
4
+ BUILD_DIR=${BUILD_DIR-.}
5
+ cd " $BUILD_DIR " || exit 1
6
+ gsl project.xml
You can’t perform that action at this time.
0 commit comments