Replace Python with Go in Dockerfile comment

This commit is contained in:
Radu Matei
2019-05-04 00:35:09 +03:00
parent 43758e0643
commit c8341fb4d3

View File

@@ -28,7 +28,7 @@ RUN go get -x -d github.com/stamblerre/gocode \
&& go build -o gocode-gomod github.com/stamblerre/gocode \ && go build -o gocode-gomod github.com/stamblerre/gocode \
&& mv gocode-gomod $GOPATH/bin/ && 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 COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json
# Verify git, process tools installed # Verify git, process tools installed
@@ -38,4 +38,4 @@ RUN apt-get update && apt-get -y install git procps
RUN apt-get autoremove -y \ RUN apt-get autoremove -y \
&& apt-get clean -y \ && apt-get clean -y \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*