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