Skip to content
Snippets Groups Projects
Unverified Commit 19419209 authored by jonasius's avatar jonasius Committed by GitHub
Browse files

Fix docker build error of externally-managed-environment (#332)

parent 378f2761
Branches codeql
No related tags found
No related merge requests found
......@@ -5,11 +5,11 @@ RUN echo http://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositor
py3-dulwich py3-humanize py3-flask py3-flask-markdown py3-docutils
RUN apk add --no-cache python3-dev py3-pip gcc musl-dev && \
pip3 install python-ctags3 && \
pip3 install --break-system-packages python-ctags3 && \
apk del python3-dev gcc musl-dev
COPY . /klaus
RUN pip3 install /klaus && rm -rf /klaus
RUN pip3 install --break-system-packages /klaus && rm -rf /klaus
# https://github.com/jonashaag/klaus/issues/300
RUN git config --global --add safe.directory '*'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment