Files
go/.devcontainer/Dockerfile

62 lines
2.6 KiB
Docker
Raw Normal View History

2020-07-25 01:38:41 +00:00
# Update the VARIANT arg in devcontainer.json to pick an Go version
2020-07-28 13:22:55 +09:00
ARG VARIANT=1.14
2020-07-25 01:38:41 +00:00
FROM golang:${VARIANT}
2019-04-16 19:54:02 -07:00
2020-07-25 01:38:41 +00:00
# This Dockerfile adds a non-root user with sudo access. Update the “remoteUser” property in
# devcontainer.json to use it. More info: https://aka.ms/vscode-remote/containers/non-root-user.
2019-08-05 23:30:46 +00:00
ARG USERNAME=vscode
ARG USER_UID=1000
ARG USER_GID=$USER_UID
2020-07-25 01:38:41 +00:00
# Options for common setup script - SHA generated on release
ARG INSTALL_ZSH="true"
ARG UPGRADE_PACKAGES="false"
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/master/script-library/common-debian.sh"
ARG COMMON_SCRIPT_SHA="dev-mode"
# Install needed packages and setup non-root user. Use a separate RUN statement to add your own dependencies.
2019-06-28 20:46:20 +00:00
RUN apt-get update \
2020-07-25 01:38:41 +00:00
&& export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends curl ca-certificates 2>&1 \
&& curl -sSL ${COMMON_SCRIPT_SOURCE} -o /tmp/common-setup.sh \
&& ([ "${COMMON_SCRIPT_SHA}" = "dev-mode" ] || (echo "${COMMON_SCRIPT_SHA} /tmp/common-setup.sh" | sha256sum -c -)) \
&& /bin/bash /tmp/common-setup.sh "${INSTALL_ZSH}" "${USERNAME}" "${USER_UID}" "${USER_GID}" "${UPGRADE_PACKAGES}" \
# Clean up
2019-12-11 05:03:16 +00:00
&& apt-get autoremove -y \
&& apt-get clean -y \
2020-07-25 01:38:41 +00:00
&& rm -rf /var/lib/apt/lists/*
# Install Go tools
2020-07-28 13:22:55 +09:00
ENV GO111MODULE=on
2020-07-25 01:38:41 +00:00
ARG GO_TOOLS_WITH_MODULES="\
golang.org/x/tools/gopls \
honnef.co/go/tools/... \
golang.org/x/tools/cmd/gorename \
golang.org/x/tools/cmd/goimports \
golang.org/x/tools/cmd/guru \
github.com/cweill/gotests/... \
github.com/haya14busa/goplay/cmd/goplay \
github.com/josharian/impl \
github.com/davidrjenni/reftools/cmd/fillstruct \
github.com/uudashr/gopkgs/v2/cmd/gopkgs \
github.com/ramya-rao-a/go-outline \
github.com/acroca/go-symbols \
github.com/godoctor/godoctor \
github.com/rogpeppe/godef \
github.com/zmb3/gogetdoc \
github.com/fatih/gomodifytags \
github.com/mgechev/revive \
github.com/go-delve/delve/cmd/dlv"
2020-07-28 13:22:55 +09:00
RUN (echo "${GO_TOOLS_WITH_MODULES}" | xargs -n 1 go get )2>&1 \
2020-07-25 01:38:41 +00:00
# golangci-lint
&& curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b /usr/local/bin 2>&1 \
# [Optional] Uncomment the next line to use go get to install anything else you need
# RUN go get -x <your-dependency-or-tool>
# [Optional] Uncomment this section to install additional OS packages.
# RUN apt-get update \
# && export DEBIAN_FRONTEND=noninteractive \
2020-07-28 13:22:55 +09:00
# && apt-get -y install --no-install-recommends <your-package-list-here>