mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-08 08:16:41 +00:00
As we do not have a simple way to hash Debian, use the Docker sha256 until we switch to Alpine. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
11 lines
295 B
Makefile
11 lines
295 B
Makefile
# no easy hashing scheme for Debian, will switch to Alpine soon so temporarily use sha256
|
|
.PHONY: push
|
|
|
|
BASE=debian:jessie
|
|
IMAGE=debian-build-kernel
|
|
|
|
push:
|
|
docker pull $(BASE)
|
|
tar cf - Dockerfile | docker build --no-cache -t mobylinux/$(IMAGE):latest -
|
|
docker push mobylinux/$(IMAGE):latest
|