Skip to content

Instantly share code, notes, and snippets.

View deric4's full-sized avatar
🌮
DevSecOpsLeanSREAgileWTFBBQ

deric4 deric4

🌮
DevSecOpsLeanSREAgileWTFBBQ
  • The Hood Canal
View GitHub Profile
@deric4
deric4 / Dockerfile.base
Last active October 5, 2021 17:40
determining awcli installed
FROM ubuntu:18.04
RUN : \
&& set -eu \
&& apt-get -qq update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -qq -y --no-install-recommends \
build-essential \
curl \
unzip \
groff \
@deric4
deric4 / python-pre-commit-hook-environment-prob.md
Created July 1, 2022 04:53
python pre-commit-hook environment

Problem:

possible for incorrect selection of cached python hook environments across projects (~/.cache/pre-commit/abcdCachedHookDir) that use different python versions

Scenario:

suppose you have 2 projects, project-a and project-b, configured for python3.7 and python3.10 respecitvely.

Each project has been configured with an identical .pre-commit-config.yaml file: