FROM python:3.7-alpine MAINTAINER Andrew Sotheran RUN apk update && \ apk add py-pip libc-dev gcc RUN pip install utils pycryptodome && \ pip install python-env coinbase COPY /* /home/price-collector/ EXPOSE 9090 CMD ["python", "price-collector/src/main.py"]