Skip to content

Instantly share code, notes, and snippets.

View dtertman's full-sized avatar

Dan Ertman dtertman

  • SproutSocial
  • Illinois
View GitHub Profile
@dtertman
dtertman / Dockerfile
Last active July 5, 2017 21:44
HTTPS working with grahamdumpleton/mod-wsgi-docker
FROM grahamdumpleton/mod-wsgi-docker:python-3.5
# set up your /app directory with your WSGI application here
# The host location where the private key and certificate will be found
# You could also inject the keys
VOLUME ["/app/keys"]
# Expose the HTTPS port
EXPOSE 443