From 3aee3c911b75172bec3837d7a777aeac6c61144e Mon Sep 17 00:00:00 2001 From: Alvaro Tinoco Date: Wed, 29 Dec 2021 15:14:14 +0100 Subject: [PATCH] chore: update go version --- Dockerfile | 2 +- go.mod | 25 ++++++++++++++++++++----- 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9a70616..1703a02 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.14 AS builder +FROM golang:1.17 AS builder WORKDIR /source COPY go.mod . COPY go.sum . diff --git a/go.mod b/go.mod index 9a6c683..0a87caf 100644 --- a/go.mod +++ b/go.mod @@ -1,15 +1,30 @@ module github.com/mrmarble/teledock -go 1.16 +go 1.17 + +require ( + github.com/docker/docker v20.10.8+incompatible + github.com/enescakir/emoji v1.0.0 + github.com/rs/zerolog v1.25.0 + gopkg.in/tucnak/telebot.v2 v2.4.0 +) require ( github.com/Microsoft/go-winio v0.5.0 // indirect github.com/containerd/containerd v1.5.2 // indirect - github.com/docker/docker v20.10.8+incompatible + github.com/docker/distribution v2.7.1+incompatible // indirect github.com/docker/go-connections v0.4.0 // indirect - github.com/enescakir/emoji v1.0.0 + github.com/docker/go-units v0.4.0 // indirect + github.com/gogo/protobuf v1.3.2 // indirect + github.com/golang/protobuf v1.4.3 // indirect github.com/morikuni/aec v1.0.0 // indirect - github.com/rs/zerolog v1.25.0 + github.com/opencontainers/go-digest v1.0.0 // indirect + github.com/opencontainers/image-spec v1.0.1 // indirect + github.com/pkg/errors v0.9.1 // indirect + github.com/sirupsen/logrus v1.7.0 // indirect + golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect + golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect + google.golang.org/genproto v0.0.0-20201110150050-8816d57aaa9a // indirect google.golang.org/grpc v1.38.0 // indirect - gopkg.in/tucnak/telebot.v2 v2.4.0 + google.golang.org/protobuf v1.25.0 // indirect )