This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |