diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2021-11-27 22:16:56 -0500 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2021-11-28 20:24:17 -0500 |
commit | f4b5ce36e75a2aca2b11ef54b0ce04e1188f667c (patch) | |
tree | fd0787e98e4e8127e9416ab045e9c8cbe26ab059 | |
parent | aab38bdccca4e1aae7967d5b2b560743ee36a0dc (diff) |
basic alpine i386 dockerfile
-rw-r--r-- | Dockerfile.i386 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Dockerfile.i386 b/Dockerfile.i386 new file mode 100644 index 00000000..76418ced --- /dev/null +++ b/Dockerfile.i386 @@ -0,0 +1,10 @@ +# Convenience tool for testing a 32-bit related security flaw. May be +# generalized in future to be more useful; until then, it is NOT +# officially supported but purely a maintainer-facing artifact. + +FROM --platform=i386 i386/alpine:3.15 + +RUN apk add openssl-dev python3-dev libffi-dev make cargo + +RUN python3 -m venv env +RUN env/bin/pip install -U pip |