sanic/examples/Dockerfile

11 lines
195 B
Docker
Raw Normal View History

2016-10-09 23:28:31 +01:00
FROM python:3.5
MAINTAINER Channel Cat <channelcat@gmail.com>
ADD . /code
RUN pip3 install git+https://github.com/channelcat/sanic
EXPOSE 8000
WORKDIR /code
CMD ["python", "simple_server.py"]