```FROM python:2.7-slim # port to open for the app...
# general
d
Copy code
FROM python:2.7-slim
# port to open for the app
EXPOSE 8000
COPY whiskey.pex /app.pex
COPY static /static
CMD [ "/app.pex" ]