summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorRyan MacLean <ryan@ryanmaclean.com>2017-08-19 09:38:31 +0200
committerJack Humbert <jack.humb@gmail.com>2017-08-19 14:17:58 +0200
commit07be7b8d69bd9ac42dfe879c811543b6d56293e7 (patch)
tree9dcbdb0d28dc7bf2e70bd6dc879ce48ac41773fe /Dockerfile
parentbaae936b47b5fbc31d1c3af52551f3a9d2038cc6 (diff)
downloadqmk_firmware-07be7b8d69bd9ac42dfe879c811543b6d56293e7.tar.gz
qmk_firmware-07be7b8d69bd9ac42dfe879c811543b6d56293e7.tar.xz
Reverting CMD Changes
Adding the CMD from @edasque in once more as it allows specifying more than one board via host ENV vars. Currently, the Dockerfile is hard-coded.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index bc0285a44..dfde33b5c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -25,4 +25,4 @@ ENV keymap=default
VOLUME /qmk
WORKDIR /qmk
-CMD make clean; make;
+CMD make clean ; make keyboard=${keyboard} subproject=${subproject} keymap=${keymap}