浏览代码

Merge pull request #831 from gtardif/fix_ecs_resolve

Fix Dockerfile syntax in ecs sidecars
Guillaume Tardif 5 年之前
父节点
当前提交
1ecfa703f5
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      ecs/resolv/Dockerfile
  2. 1 1
      ecs/secrets/Dockerfile

+ 1 - 1
ecs/resolv/Dockerfile

@@ -12,7 +12,7 @@
 #   See the License for the specific language governing permissions and
 #   limitations under the License.
 
-FROM FROM golang:1.15 AS builder
+FROM golang:1.15 AS builder
 WORKDIR $GOPATH/src/github.com/docker/compose-cli/ecs/resolv
 COPY . .
 RUN CGO_ENABLED=0 go build -ldflags="-w -s" -o /go/bin/resolv main/main.go

+ 1 - 1
ecs/secrets/Dockerfile

@@ -12,7 +12,7 @@
 #   See the License for the specific language governing permissions and
 #   limitations under the License.
 
-FROM FROM golang:1.15 AS builder
+FROM golang:1.15 AS builder
 WORKDIR $GOPATH/src/github.com/docker/compose-cli/ecs/secrets
 COPY . .
 RUN CGO_ENABLED=0 go build -ldflags="-w -s" -o /go/bin/secrets main/main.go