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.
2025-02-25 07:52:27 +00:00
|
|
|
FROM node:22.14.0@sha256:a27967171a54d13b85387675fe0362f77e969c7a8abad2faaee45490ad48fd52
|
2023-01-31 19:45:01 +01:00
|
|
|
|
2024-04-08 08:09:40 +02:00
|
|
|
ENV PATH=${PATH}:/root/.local/bin
|
|
|
|
|
|
2023-01-31 19:45:01 +01:00
|
|
|
RUN apt update && \
|
2024-05-20 07:13:23 +02:00
|
|
|
apt install -y python3 python3-pip ruby ruby-dev git pipx && \
|
2023-01-31 19:45:01 +01:00
|
|
|
rm -rf /var/lib/apt/lists/* && \
|
2024-02-24 01:26:40 +01:00
|
|
|
pipx install pre-commit
|