Develop Go based applications. Includes appropriate runtime args, Go, common tools, extensions, and dependencies.
Metadata | Value |
---|---|
Contributors | The VS Code Team |
Categories | Core, Languages |
Definition type | Dockerfile |
Published images | mcr.microsoft.com/vscode/devcontainers/go |
Available image variants | 1 / 1-bullseye, 1.18 / 1.18-bullseye, 1.17 / 1.17-bullseye, 1-buster, 1.18-buster, 1.17-buster (full list) |
Published image architecture(s) | x86-64, arm64/aarch64 for bullseye variants |
Works in Codespaces | Yes |
Container host OS support | Linux, macOS, Windows |
Container OS | Debian |
Languages, platforms | Go |
See history for information on the contents of published images.
While the definition itself works unmodified, you can select the version of Go the container uses by updating the VARIANT
arg in the included devcontainer.json
(and rebuilding if you've already created the container).
// Or you can use 1.17-bullseye or 1.17-buster if you want to pin to an OS version
"args": { "VARIANT": "1.17" }
You can also directly reference pre-built versions of .devcontainer/base.Dockerfile
by using the image
property in .devcontainer/devcontainer.json
or updating the FROM
statement in your own Dockerfile
to one of the following. An example Dockerfile
is included in this repository.
mcr.microsoft.com/vscode/devcontainers/go
(latest)mcr.microsoft.com/vscode/devcontainers/go:1
(or1-bullseye
,1-buster
to pin to an OS version)mcr.microsoft.com/vscode/devcontainers/go:1.17
(or1.17-bullseye
,1.17-buster
to pin to an OS version)mcr.microsoft.com/vscode/devcontainers/go:1.18
(or1.18-bullseye
,1.18-buster
to pin to an OS version)
You can decide how often you want updates by referencing a semantic version of each image. For example:
mcr.microsoft.com/vscode/devcontainers/go:0-1.18
(or0-1.18-bullseye
,0-1.18-buster
)mcr.microsoft.com/vscode/devcontainers/go:0.206-1.18
(or0.205-1.18-bullseye
,0.205-1.18-buster
)mcr.microsoft.com/vscode/devcontainers/go:0.206.0-1.18
(or0.205.0-1.18-bullseye
,0.205.0-1.18-buster
)
However, we only do security patching on the latest non-breaking, in support versions of images (e.g. 0-1.16
). You may want to run apt-get update && apt-get upgrade
in your Dockerfile if you lock to a more specific version to at least pick up OS security updates.
See history for information on the contents of each version and here for a complete list of available tags.
Alternatively, you can use the contents of base.Dockerfile
to fully customize your container's contents or to build it for a container host architecture not supported by the image.
Given JavaScript front-end web client code written for use in conjunction with a Go back-end often requires the use of Node.js-based utilities to build, this container also includes nvm
so that you can easily install Node.js. You can change the version of Node.js installed or disable its installation by updating the args
property in .devcontainer/devcontainer.json
.
"args": {
"VARIANT": "1",
"NODE_VERSION": "14" // Set to "none" to skip Node.js installation
}
-
If this is your first time using a development container, please see getting started information on setting up Remote-Containers or creating a codespace using GitHub Codespaces.
-
To use the pre-built image:
- Start VS Code and open your project folder or connect to a codespace.
- Press F1 select and Add Development Container Configuration Files... command for Remote-Containers or Codespaces.
- Select this definition. You may also need to select Show All Definitions... for it to appear.
-
To build a custom version of the image instead:
- Clone this repository locally.
- Start VS Code and open your project folder or connect to a codespace.
- Use your local operating system's file explorer to drag-and-drop the locally cloned copy of the
.devcontainer
folder for this definition into the VS Code file explorer for your opened project or codespace. - Update
.devcontainer/devcontainer.json
to reference"dockerfile": "base.Dockerfile"
.
-
After following step 2 or 3, the contents of the
.devcontainer
folder in your project can be adapted to meet your needs. -
Finally, press F1 and run Remote-Containers: Reopen Folder in Container or Codespaces: Rebuild Container to start using the definition.
This definition includes some test code that will help you verify it is working as expected on your system. Follow these steps:
- If this is your first time using a development container, please follow the getting started steps to set up your machine.
- Clone this repository.
- Start VS Code, press F1, and select Remote-Containers: Open Folder in Container...
- Select the
containers/go
folder. - After the folder has opened in the container, press F5 to start the project.
- You should see "Hello remote world!" in the Debug Console after the program executes.
- From here, you can add breakpoints or edit the contents of the
test-project
folder to do further testing.
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See LICENSE.