Merge pull request #2 from radu-matei/replace-python-comment

Replace Python with Go in Dockerfile comment
This commit is contained in:
Erich Gamma
2019-05-06 09:50:38 +02:00
committed by GitHub

View File

@@ -28,7 +28,7 @@ RUN go get -x -d github.com/stamblerre/gocode \
&& go build -o gocode-gomod github.com/stamblerre/gocode \
&& mv gocode-gomod $GOPATH/bin/
# Copy default endpoint specific user settings overrides into container to specify Python path
# Copy default endpoint specific user settings overrides into container to specify Go path
COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json
# Verify git, process tools installed
@@ -38,4 +38,4 @@ RUN apt-get update && apt-get -y install git procps
RUN apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*