gcc seems to be required for pip install now

Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
Simon L 2023-11-16 16:13:00 +01:00
parent 2af3be98e9
commit 5e843a9a9a

View file

@ -22,7 +22,8 @@ RUN set -ex; \
wget \ wget \
shadow \ shadow \
pulseaudio \ pulseaudio \
openssl; \ openssl \
gcc; \
# chromium chromium-chromedriver? # chromium chromium-chromedriver?
apk add --no-cache geckodriver --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing; \ apk add --no-cache geckodriver --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing; \
useradd -d /tmp --system recording; \ useradd -d /tmp --system recording; \
@ -41,7 +42,8 @@ RUN set -ex; \
git \ git \
wget \ wget \
shadow \ shadow \
openssl; openssl \
gcc;
WORKDIR /tmp WORKDIR /tmp
USER recording USER recording