Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker: Switch stable release to v0.2.0 #30

Merged
merged 1 commit into from Dec 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Expand Up @@ -11,13 +11,13 @@ FROM golang:1.17-buster AS builder

# Build dcrd and include dcrctl as well.
RUN git clone https://github.com/decred/dcrd
RUN (cd dcrd && git checkout release-v1.6.2)
RUN (cd dcrd && git checkout release-v1.7.5)
RUN (cd dcrd && go install .)
RUN git clone https://github.com/decred/dcrctl
RUN (cd dcrctl && git checkout release-v1.6.2)
RUN (cd dcrctl && git checkout release-v1.7.5)
RUN (cd dcrctl && go install .)
RUN git clone https://github.com/decred/dcrros
RUN (cd dcrros && git checkout release-v0.1.1)
RUN (cd dcrros && git checkout release-v0.2.0)
RUN (cd dcrros && go install .)

# Stage 2: Build the final image starting from a cleaner base.
Expand Down