Added -H 0.0.0.0 to entrypoint

This commit is contained in:
Terry Cain 2017-09-19 20:30:54 +01:00
commit dc09b18b99
No known key found for this signature in database
GPG key ID: 14D90844E4E9B9F3

View file

@ -10,6 +10,6 @@ RUN apk add --no-cache python3 && \
pip3 --no-cache-dir install --upgrade pip setuptools && \
pip3 --no-cache-dir install ".[server]"
ENTRYPOINT ["/usr/bin/moto_server"]
ENTRYPOINT ["/usr/bin/moto_server", "-H", "0.0.0.0"]
EXPOSE 5000