-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
21 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.14 AS builder | ||
FROM golang:1.17 AS builder | ||
WORKDIR /source | ||
COPY go.mod . | ||
COPY go.sum . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
) |