diff options
author | ytti <saku@ytti.fi> | 2018-04-26 11:31:10 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-26 11:31:10 +0300 |
commit | 9153189119b58408f6203affee7888716c5570db (patch) | |
tree | d5e8a1c774b2eefe1acabc58690ad910e3df5484 | |
parent | 4ffe710f6fa5d48777f0b5e881013b95c9b85c69 (diff) | |
parent | d03dca1a7b69b309b1b4a597a921b0b5b45f0e8f (diff) |
Merge pull request #1311 from wk/patch-1
Use actual git commands that exist
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ COPY . /tmp/oxidized/ WORKDIR /tmp/oxidized # docker automated build gets shallow copy, but non-shallow copy cannot be unshallowed -RUN git --fetch unshallow || true +RUN git fetch --unshallow || true RUN rake install # web interface |