We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c49a696 commit 5763a17Copy full SHA for 5763a17
docker-compose.golang.yml
@@ -7,7 +7,15 @@ services:
7
context: .
8
dockerfile: golang/Dockerfile
9
args:
10
- VERSION: "1.21"
+ VERSION: "1.22"
11
+
12
+ golang1.22:
13
+ image: okteto/golang:1.22
14
+ build:
15
+ context: .
16
+ dockerfile: golang/Dockerfile
17
+ args:
18
19
20
golang1.21:
21
image: okteto/golang:1.21
@@ -34,12 +42,3 @@ services:
34
42
35
43
VERSION: "1.19"
36
44
DEBIAN_VERSION: "buster"
37
-
38
- golang1.18:
39
- image: okteto/golang:1.18
40
- build:
41
- context: .
- dockerfile: golang/Dockerfile
- args:
- VERSION: "1.18"
45
- DEBIAN_VERSION: "buster"
golang/Dockerfile
@@ -1,4 +1,4 @@
1
-ARG VERSION="1.21"
+ARG VERSION="1.22"
2
ARG DEBIAN_VERSION="bookworm"
3
FROM golang:${VERSION}-${DEBIAN_VERSION}
4
0 commit comments