Fix Dockerfile syntax in ecs sidecars introduced by https://github.com/docker/compose-cli/pull/799

Signed-off-by: Guillaume Tardif <guillaume.tardif@docker.com>
This commit is contained in:
Guillaume Tardif 2020-10-26 16:42:51 +01:00
parent 382827241d
commit 0d197401a2
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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