소스 검색

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