From 5c60bccbf0d2798476c9b59a406ee5964c971621 Mon Sep 17 00:00:00 2001 From: v-stickykeys <8445610+v-stickykeys@users.noreply.github.com> Date: Sun, 17 Oct 2021 23:39:30 -0400 Subject: [PATCH] feat: build image for go-ipfs v0.8 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5e48f72..cc4d4d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ # Based on https://github.com/ipfs/go-ipfs/tree/c55fda4d6cbd40150d4432ea9226c5b977fc96f4 -FROM golang:1.16.7-buster as clone +FROM golang:1.15-buster as clone WORKDIR /clone -RUN git clone --depth 1 --branch v0.10.0 https://github.com/ipfs/go-ipfs +RUN git clone --depth 1 --branch v0.8.0 https://github.com/ipfs/go-ipfs # Note: when updating the go minor version here, also update the go-channel in snap/snapcraft.yml -FROM golang:1.16.7-buster +FROM golang:1.15-buster # Install deps RUN apt-get update && apt-get install -y \