7 lines
152 B
Docker
7 lines
152 B
Docker
FROM node:16
|
|
|
|
RUN apt update && \
|
|
apt install -y python3 python3-pip ruby git && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
pip3 install pre-commit
|