Skip to content

Commit c54404d

Browse files
committed
Update gsoap version and build Dockerfile from local source, not remote git repository
1 parent f0cce0c commit c54404d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

build/Dockerfile.onvif-camera

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ RUN apt install \
66
flex bison byacc make m4 autoconf unzip \
77
git g++ wget -y
88

9-
RUN git clone https://github.com/fcabrera23/onvif-camera-mock && \
10-
cd /onvif-camera-mock && \
9+
ADD . /onvif-camera-mock/
10+
11+
RUN cd /onvif-camera-mock && \
1112
cd wsdd && \
1213
make release
1314

onvif_srvd/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ DAEMON_NO_CHDIR = 1
88
DAEMON_NO_CLOSE_STDIO = 0
99

1010

11-
GSOAP_VERSION = 2.8.127
11+
GSOAP_VERSION = 2.8.135
1212
GSOAP_INSTALL_DIR = ./gsoap-2.8
1313
GSOAP_DIR = $(GSOAP_INSTALL_DIR)/gsoap
1414
GSOAP_CUSTOM_DIR = $(GSOAP_DIR)/custom

wsdd/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ DAEMON_NO_CLOSE_STDIO = 0
1010

1111

1212

13-
GSOAP_VERSION = 2.8.127
13+
GSOAP_VERSION = 2.8.135
1414
GSOAP_INSTALL_DIR = ./gsoap-2.8
1515
GSOAP_DIR = $(GSOAP_INSTALL_DIR)/gsoap
1616
GSOAP_PLUGIN_DIR = $(GSOAP_DIR)/plugin

0 commit comments

Comments
 (0)