We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 726cff1 commit a3450acCopy full SHA for a3450ac
docker/Dockerfile.allvcs
@@ -0,0 +1,4 @@
1
+FROM vladistan/autorevision:latest
2
+RUN apk update && apk add subversion bzr mercurial
3
+WORKDIR /app
4
+ENTRYPOINT ["/usr/local/bin/autorevision"]
docker/Dockerfile.git
@@ -0,0 +1,14 @@
+FROM alpine:3.10 AS builder
+RUN apk update && apk add git bash make asciidoc gzip sed
+COPY . /build
+RUN mkdir -p /build
5
+WORKDIR /build
6
+RUN ls
7
+RUN make install
8
+
9
10
11
+FROM alpine:3.10
12
+RUN apk update && apk add git bash
13
+COPY --from=builder /usr/local/bin/autorevision /usr/local/bin
14
0 commit comments