Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions test.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,12 @@ ENV PATH="/usr/local/go/bin:${PATH}"
# Declare an ARG for the branch name with a default value of "main"
ARG BRANCH_NAME=main

# Declare an ARG for the branch name with a default value of "main"
ARG BRANCH_NAME=main

WORKDIR /deso/src

RUN git clone https://github.com/deso-protocol/core.git

WORKDIR /deso/src/core
RUN git pull && \
git checkout feature/proof-of-stake && \
git pull origin feature/proof-of-stake # TODO: Revert to `git pull` once core PR is merged.
RUN git pull

RUN go mod download

Expand Down