This repository contains a Dockerfile for Twisted.
The image is based on the official Ubuntu 14.04 image.
This image is meant to be used as a base for any Twisted-based applications. It also includes all dependencies necessary for client and server TLS support.
- Install Docker.
docker build -t="twisted/baseimage" github.com/cyli/docker-twisted
)
In your Dockerfile
, include the following line:
FROM twisted/baseimage
Alternately, you can just run the image to test it:
docker run -it --rm twisted/baseimage
- 2014-07-06 - initial build/commit