Skip to content

Commit 4598103

Browse files
authored
Bump Go version everywhere (#76)
* Bump Go version everywhere * Update devcontainer image
1 parent 0fa59d3 commit 4598103

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.devcontainer/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG VARIANT=1
2-
FROM mcr.microsoft.com/vscode/devcontainers/go:0-${VARIANT}
2+
FROM mcr.microsoft.com/vscode/devcontainers/go:1-${VARIANT}
33

44
# [Option] Install zsh
55
ARG INSTALL_ZSH="true"
@@ -22,11 +22,11 @@ RUN apt-get update \
2222
&& /bin/bash /tmp/library-scripts/docker-in-docker-debian.sh "${ENABLE_NONROOT_DOCKER}" "${USERNAME}" "${USE_MOBY}" \
2323
# Clean up
2424
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/* /tmp/library-scripts/
25-
25+
2626
VOLUME [ "/var/lib/docker" ]
2727

28-
# Setting the ENTRYPOINT to docker-init.sh will start up the Docker Engine
29-
# inside the container "overrideCommand": false is set in devcontainer.json.
28+
# Setting the ENTRYPOINT to docker-init.sh will start up the Docker Engine
29+
# inside the container "overrideCommand": false is set in devcontainer.json.
3030
# The script will also execute CMD if you need to alter startup behaviors.
3131
ENTRYPOINT [ "/usr/local/share/docker-init.sh" ]
3232
CMD [ "sleep", "infinity" ]

.devcontainer/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
context: .
77
dockerfile: Dockerfile
88
args:
9-
VARIANT: 1.21
9+
VARIANT: 1.22
1010

1111
privileged: true
1212
cap_add:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module tm-to-abrp
22

3-
go 1.17
3+
go 1.22
44

55
require (
66
github.com/eclipse/paho.mqtt.golang v1.4.3

0 commit comments

Comments
 (0)