Browse Source

Create SVN container

Vadim Surkov 6 years ago
parent
commit
e37a2070c5
1 changed files with 8 additions and 0 deletions
  1. 8 0
      Dockerfile

+ 8 - 0
Dockerfile

@@ -0,0 +1,8 @@
+FROM alpine:3.9
+
+RUN apk --no-cache add subversion cyrus-sasl-plain && \
+    mkdir /repository
+
+WORKDIR /repository
+
+ENTRYPOINT ["/usr/bin/svn"]