forked from github/pre-commit-opentofu
11 lines
209 B
Text
11 lines
209 B
Text
|
|
FROM pre-commit
|
||
|
|
|
||
|
|
RUN apt update && \
|
||
|
|
apt install -y \
|
||
|
|
datamash \
|
||
|
|
time && \
|
||
|
|
# Cleanup
|
||
|
|
rm -rf /var/lib/apt/lists/*
|
||
|
|
|
||
|
|
WORKDIR /pct
|
||
|
|
ENTRYPOINT [ "/pct/tests/hooks_performance_test.sh" ]
|