Added DockerFile

This commit is contained in:
ZuluPro 2015-09-15 18:25:12 -04:00
parent f72613cc47
commit 82eeb182a7

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM python:2
ADD . /moto/
ENV PYTHONUNBUFFERED 1
WORKDIR /moto/
RUN python setup.py install
CMD ["moto_server"]
EXPOSE 5000