dtudj42064 2019-01-03 12:57
浏览 256

无法在Windows中为Golang运行Docker映像

I have created an image in windows 10 git bash. After so many turn around's I finally able to create an image in windows using docker.

But the problem is that when I try to run the container it shows me an error. I have tried everything. My DOCKERFILE is:

# Start from a Debian image with the latest version of Go installed
# and a workspace (GOPATH) configured at /go.
FROM golang:latest AS builder
# install golang dependency management tool
RUN go get -u github.com/golang/dep/cmd/dep
# RUN go get -u -v github.com/go-swagger/go-swagger

# RUN CHMOD 777 -R .

# COPY . $GOPATH/src/app
RUN mkdir $GOPATH/src/project
# RUN mkdir $GOPATH/src/app/swagger
# WORKDIR /go/src/app 
WORKDIR $GOPATH/src/project
# Add main file to /go/src/app

ADD . $GOPATH/src/project
ADD ./swagger/* $GOPATH/src/app/swagger/

# Copy Gopkg files to install dependencies
COPY ./Gopkg.toml /go/src/project
COPY ./Gopkg.lock /go/src/project
# COPY ./swagger/swagger.yaml /go/src/app

RUN dep ensure -update -v
RUN go install -v ./...

CMD ["project"]

The image is created. But I am unable to run a container from the image it always shows and error:

C:/Program Files/Docker/Docker/Resources/bin/docker.exe: Error response from daemon: OCI runtime create failed: container_linux.go:348: starting container process caused "exec: \"C:/Program Files/Git/usr/bin/ba sh.exe\": stat C:/Program Files/Git/usr/bin/bash.exe: no such file or directory": unknown.

If I tried to look into the image contents . It is asking to run the container first. How should one is able to view the files and check for an error.

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大
    • ¥15 Oracle中如何从clob类型截取特定字符串后面的字符
    • ¥15 想通过pywinauto自动电机应用程序按钮,但是找不到应用程序按钮信息
    • ¥15 如何在炒股软件中,爬到我想看的日k线
    • ¥15 seatunnel 怎么配置Elasticsearch
    • ¥15 PSCAD安装问题 ERROR: Visual Studio 2013, 2015, 2017 or 2019 is not found in the system.
    • ¥15 (标签-MATLAB|关键词-多址)
    • ¥15 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
    • ¥500 52810做蓝牙接受端
    • ¥15 基于PLC的三轴机械手程序