Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 791 Bytes

README.md

File metadata and controls

25 lines (14 loc) · 791 Bytes

Twisted Dockerfile

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.

Installation

  1. Install Docker.
  2. docker build -t="twisted/baseimage" github.com/cyli/docker-twisted)

Usage

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

Changelog

  • 2014-07-06 - initial build/commit