-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Javier Lopez <javier@okteto.com>
- Loading branch information
1 parent
99de42c
commit 00daab3
Showing
3 changed files
with
16 additions
and
7 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.15-buster as builder | ||
FROM golang:1.22-bookworm as builder | ||
|
||
WORKDIR /app | ||
|
||
|
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,13 +1,19 @@ | ||
module github.com/okteto/remote | ||
|
||
go 1.15 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect | ||
github.com/creack/pty v1.1.11 | ||
github.com/gliderlabs/ssh v0.3.1 | ||
github.com/google/uuid v1.1.2 | ||
github.com/pkg/sftp v1.12.0 | ||
github.com/sirupsen/logrus v1.7.0 | ||
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a | ||
golang.org/x/crypto v0.22.0 | ||
) | ||
|
||
require ( | ||
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect | ||
github.com/kr/fs v0.1.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
) |
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