fix the docker build

This commit is contained in:
Zach White
2021-07-16 13:06:44 -07:00
parent e8818c9d23
commit 567ef9637e
+2 -2
View File
@@ -1,10 +1,10 @@
FROM qmkfm/base_container
# Copy package in
COPY dist /tmp
ADD dist /tmp/dist
# Install python packages
RUN python3 -m pip uninstall qmk || true
RUN python3 -m pip uninstall -y qmk || true
RUN python3 -m pip install --upgrade pip setuptools wheel nose2 && \
python3 -m pip install /tmp/dist/qmk-*.whl && \
rm -rf /tmp/dist