Skip to content

Commit 6b59173

Browse files
committed
Fixes svn client http/https support, though no server certs are trusted (same issue with curl)
1 parent 438a412 commit 6b59173

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

build-contracts/docker-compose.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,16 @@ services:
7373
- svn
7474
- svn_adminrest
7575

76+
httpd-svn-curl:
77+
build: ../httpd
78+
labels:
79+
- com.yolean.build-contract
80+
entrypoint: curl
81+
command: [-I, "https://svn.apache.org/repos/asf/subversion/trunk/"]
82+
7683
httpd-svn-client:
7784
build: ../httpd
7885
labels:
7986
- com.yolean.build-contract
8087
entrypoint: svn
81-
command: [info, "https://github.com/Reposoft/docker-svn"]
88+
command: [info, "https://svn.apache.org/repos/asf/subversion/trunk/"]

httpd/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ ENV DEBIAN_FRONTEND noninteractive
1111
RUN depsRuntime=" \
1212
libsqlite3-0 \
1313
curl \
14+
libserf-1-1 \
1415
" \
1516
&& depsBuild=" \
1617
ca-certificates \
@@ -21,6 +22,8 @@ RUN depsRuntime=" \
2122
make \
2223
libsqlite3-dev \
2324
libz-dev \
25+
libneon27-dev \
26+
libserf-dev \
2427
" \
2528
set -x \
2629
&& apt-get update \

0 commit comments

Comments
 (0)