docs: Add contributing guide and docs about performance tests (#235)

This commit is contained in:
Maksym Vlasov 2021-10-01 19:31:14 +03:00 committed by GitHub
commit c8fb4081f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 222 additions and 25 deletions

11
tests/Dockerfile Normal file
View file

@ -0,0 +1,11 @@
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" ]