diff --git a/docker-compose.accounts.yml b/docker-compose.accounts.yml index 22d24541..cc440cef 100644 --- a/docker-compose.accounts.yml +++ b/docker-compose.accounts.yml @@ -24,6 +24,8 @@ services: build: context: ./docker/accounts dockerfile: Dockerfile + args: + branch: ivo/limit_delete container_name: accounts restart: unless-stopped logging: *default-logging diff --git a/docker/accounts/Dockerfile b/docker/accounts/Dockerfile index 8be44370..a87171a2 100644 --- a/docker/accounts/Dockerfile +++ b/docker/accounts/Dockerfile @@ -4,9 +4,11 @@ LABEL maintainer="NebulousLabs " ENV GOOS linux ENV GOARCH amd64 +ARG branch=main + WORKDIR /root -RUN git clone --single-branch --branch main https://github.com/NebulousLabs/skynet-accounts.git && \ +RUN git clone --single-branch --branch ${branch} https://github.com/NebulousLabs/skynet-accounts.git && \ cd skynet-accounts && \ go mod download && \ make release