Add more packages to testing Docker image.

This commit is contained in:
Sam Tobin-Hochstadt 2020-05-04 14:04:40 -04:00 committed by Sam Tobin-Hochstadt
parent 126e8dacb5
commit 850aefe8fe

View File

@ -4,7 +4,9 @@ LABEL description="Debian Stable Slim image with Racket test dependencies pre-in
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y openssl ca-certificates libfontconfig1-dev libpango1.0-dev libcairo2-dev libjpeg-dev libturbojpeg0-dev gcc sqlite && \
apt-get install -y libffi-dev make git uuid-dev unzip python libxml2-dev libgtk2.0-0 sudo wget curl openssl ca-certificates libfontconfig1-dev libpango1.0-dev libcairo2-dev libjpeg-dev libturbojpeg0-dev gcc sqlite && \
curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
apt-get update && apt-get install -y nodejs && \
apt-get clean
CMD ["bash"]