diff options
| author | luccioman <luccioman@users.noreply.github.com> | 2016-06-03 14:39:39 +0200 |
|---|---|---|
| committer | luccioman <luccioman@users.noreply.github.com> | 2016-06-03 14:39:39 +0200 |
| commit | b54356baecc824312806dec3760c3bb365b56526 (patch) | |
| tree | 71b508bf3878c431dda7fe7fccad50c16bf3865b /docker/Dockerfile.alpine | |
| parent | 48ea77b8cced15eaaeae599d83749ac53d33ff57 (diff) | |
Fixed line end causing build error.
Diffstat (limited to 'docker/Dockerfile.alpine')
| -rwxr-xr-x | docker/Dockerfile.alpine | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docker/Dockerfile.alpine b/docker/Dockerfile.alpine index 6be3154b9..497dd70ed 100755 --- a/docker/Dockerfile.alpine +++ b/docker/Dockerfile.alpine @@ -52,12 +52,12 @@ WORKDIR /opt # - remove unnecessary and size consuming .git directory # - delete git package and ant binary install RUN apk update && \ - apk add --no-cache git && \ - git clone https://github.com/yacy/yacy_search_server.git && \ - ant compile -f /opt/yacy_search_server/build.xml && \ - rm -rf "/opt/yacy_search_server/.git" && \ - rm -rf /opt/ant && \ - apk del git + apk add --no-cache git && \ + git clone https://github.com/yacy/yacy_search_server.git && \ + ant compile -f /opt/yacy_search_server/build.xml && \ + rm -rf /opt/yacy_search_server/.git && \ + rm -rf /opt/ant && \ + apk del git # Set initial admin password : "docker" (encoded with custom yacy md5 function net.yacy.cora.order.Digest.encodeMD5Hex()) RUN sed -i "/adminAccountBase64MD5=/c\adminAccountBase64MD5=MD5:e672161ffdce91be4678605f4f4e6786" /opt/yacy_search_server/defaults/yacy.init |
