summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorDaniel Wiesenberg <weasy@hotmail.de>2020-10-18 23:06:08 +0200
committerDaniel Wiesenberg <weasy@hotmail.de>2020-10-18 23:06:08 +0200
commit2d6b7750fd98fef867e84097445f74496d1b3b3f (patch)
treecae7905fe295b08bf26110ad9c1083e49905fe3a /Dockerfile
parentcde4178f4af69f61fb06169c9020888788c38f04 (diff)
downloadconduit-2d6b7750fd98fef867e84097445f74496d1b3b3f.zip
Fix order of docker command arguments and change repository link to...
...github.com repo, to relieve some pressure from git.koesters.xyz.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 3ed7371..a97f4cf 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -11,7 +11,7 @@ FROM alpine:3.12 as builder
# from the official git repository. Defaults to the git repo.
ARG LOCAL=false
# Specifies which revision/commit is build. Defaults to HEAD
-ARG GIT_REF=HEAD
+ARG GIT_REF=origin/master
# Add 'edge'-repository to get Rust 1.45
RUN sed -i \
@@ -30,7 +30,7 @@ COPY . .
RUN if [[ $LOCAL == "true" ]]; then \
cargo install --path . ; \
else \
- cargo install --git "https://git.koesters.xyz/timo/conduit.git" --rev ${GIT_REF}; \
+ cargo install --git "https://github.com/timokoesters/conduit.git" --rev ${GIT_REF}; \
fi
########################## RUNTIME IMAGE ##########################