File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ def lastVersion = project.version
1515beforeReleaseBuild << {
1616 println " > upgrading docker-compose version from: ${ lastVersion} to ${ project.version} "
1717 files(
18- " ${ project.projectDir} /docker-compose.yml" , " ${ project.projectDir} /Dockerfile"
18+ " ${ project.projectDir} /docker-compose.yml" , " ${ project.projectDir} /hub. Dockerfile"
1919 ). each{ f ->
2020
2121 println " > updating version in: ${ f} "
Original file line number Diff line number Diff line change 1- version =2.0.5
1+ version =2.0.4
Original file line number Diff line number Diff line change 1+ FROM debian:8
2+ WORKDIR /app
3+ ENV TMP_NAME=/tmp/dns-proxy-server.tgz
4+ RUN apt-get update && apt-get install -y curl
5+ RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.0.4/dns-proxy-server-2.0.4.tgz > $TMP_NAME && \
6+ tar -xvf $TMP_NAME -C /app/ && rm -f $TMP_NAME
7+
8+ VOLUME ["/var/run/docker.sock" , "/var/run/docker.sock" ]
9+ CMD ["bash" , "-c" , "/app/dns-proxy-server" ]
You can’t perform that action at this time.
0 commit comments