price-collector/Dockerfile
2020-03-04 23:12:01 +00:00

9 lines
308 B
Docker

FROM python:3.7-alpine
MAINTAINER Andrew Sotheran <cryptosky.user@gmail.com>
RUN apk update && \
apk add py-pip libc-dev gcc
RUN pip install utils pycryptodome && \
pip install python-dotenv coinbase flask
COPY . /home/price-collector/.
EXPOSE 9090
CMD ["python", "/home/price-collector/src/main.py"]