Merge pull request #422 from ZuluPro/docker

Added DockerFile
This commit is contained in:
Steve Pulec 2015-10-17 23:20:57 -04:00
commit 173fe95397

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