This repository has been archived on 2026-03-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2023-02-22 13:02:39 +01:00
|
|
|
FROM node:18
|
2023-01-31 19:45:01 +01:00
|
|
|
|
|
|
|
|
RUN apt update && \
|
|
|
|
|
apt install -y python3 python3-pip ruby git && \
|
|
|
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
|
|
|
pip3 install pre-commit
|