Skip to content

Instantly share code, notes, and snippets.

View jsf9k's full-sized avatar
👽
Reminiscing about my home planet...

Shane Frasier jsf9k

👽
Reminiscing about my home planet...
View GitHub Profile
@jsf9k
jsf9k / Dockerfile_using_build_ext
Last active March 16, 2018 15:37
Dockerfile for installing nassl on Alpine Linux
FROM python:3.6.4-alpine3.7
MAINTAINER Shane Frasier <jeremy.frasier@beta.dhs.gov>
# Install git so we can checkout the nassl git repo.
#
# Also install build-base, libffi, libffi-dev, openssl, and
# openssl-dev since they are needed to build some of the dependencies
# of domain-scan. With the exception of libffi and openssl, these are
# all build dependencies that can be removed at the end.
RUN apk update && apk upgrade