feat: Install jest in Dockerfile

This commit is contained in:
Paul Gauthier (aider) 2024-12-17 18:40:30 -08:00
parent f91be86662
commit 614d9c9b0d

View file

@ -15,10 +15,11 @@ RUN apt-get update && apt-get install -y \
# Make python3.11 the default python3
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1
# Install Node.js
# Install Node.js and Jest
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
apt-get install -y nodejs && \
rm -rf /var/lib/apt/lists/*
rm -rf /var/lib/apt/lists/* && \
npm install -g jest
# Install Go
RUN curl -OL https://golang.org/dl/go1.21.5.linux-amd64.tar.gz && \