1
0
mirror of https://github.com/docker/cli.git synced 2026-01-18 08:21:31 +03:00

Merge pull request #9 from seemethere/deb_dockerfiles_naming_update

Update deb dockerfiles to $(uname -m) names
Upstream-commit: 10ce75b654208803de1c5ddc7377dae10f943756
Component: packaging
This commit is contained in:
Andrew Hsu
2017-05-31 10:47:58 -07:00
committed by GitHub
15 changed files with 1 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
SHELL:=/bin/bash
ALPINE:=$(shell $(CURDIR)/../detect_alpine_image)
ARCH:=amd64
ARCH:=$(shell uname -m)
ENGINE_DIR:=$(CURDIR)/../../engine
CLI_DIR:=$(CURDIR)/../../cli
GITCOMMIT?=$(shell cd $(ENGINE_DIR) && git rev-parse --short HEAD)