add g++ as build dependency to the dockerfile

This commit is contained in:
Robert Kaussow 2020-03-15 15:34:41 +01:00
parent e6e3e00605
commit f7d7b3a5aa
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ ENV PY_COLORS=1
ADD dist/docker_tidy-*.whl /
RUN \
apk --update add --virtual .build-deps gcc && \
apk --update add --virtual .build-deps gcc g++ && \
pip install --upgrade --no-cache-dir pip && \
pip install --no-cache-dir --find-links=. docker-tidy && \
rm -f docker_tidy-*.whl && \