mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-13 07:10:26 +00:00
12 lines
284 B
Makefile
12 lines
284 B
Makefile
## SPDX-License-Identifier: MIT OR Apache-2.0
|
|
##
|
|
## Copyright (c) 2019-2021 Andre Richter <andre.o.richter@gmail.com>
|
|
|
|
default: docker_build
|
|
|
|
docker_build:
|
|
cp ../../Gemfile .
|
|
docker build -t rustembedded/osdev-utils \
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` .
|
|
rm Gemfile
|