From 8b832c494cd6d50e4f9c8384ce54733308eda95f Mon Sep 17 00:00:00 2001 From: Tsan-Kuang Lee <1425438+tsankuanglee@users.noreply.github.com> Date: Tue, 5 Nov 2019 01:14:15 -0600 Subject: [Keyboard] add keymap beautifier for Ergodox EZ (#4393) * add beautifier * add example * Update keyboards/ergodox_ez/util/keymap_beautifier.py Co-Authored-By: tsankuanglee <1425438+tsankuanglee@users.noreply.github.com> * Update keyboards/ergodox_ez/util/keymap_beautifier.py Co-Authored-By: tsankuanglee <1425438+tsankuanglee@users.noreply.github.com> * works for regular layout * all planned features implemented * add justification switch * docker support * doc and starting script * clean up the container after done --- keyboards/ergodox_ez/util/keymap_beautifier/Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 keyboards/ergodox_ez/util/keymap_beautifier/Dockerfile (limited to 'keyboards/ergodox_ez/util/keymap_beautifier/Dockerfile') diff --git a/keyboards/ergodox_ez/util/keymap_beautifier/Dockerfile b/keyboards/ergodox_ez/util/keymap_beautifier/Dockerfile new file mode 100644 index 0000000000..fbee1d0df8 --- /dev/null +++ b/keyboards/ergodox_ez/util/keymap_beautifier/Dockerfile @@ -0,0 +1,8 @@ +FROM python:3.7.4-alpine3.10 + +WORKDIR /usr/src/app +COPY requirements.txt ./ +RUN pip install --no-cache-dir -r requirements.txt +COPY ./KeymapBeautifier.py ./KeymapBeautifier.py + +CMD [ "python", "./KeymapBeautifier.py", "-h" ] -- cgit v1.2.3