forked from bmoscon/cryptostore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
26 lines (18 loc) · 699 Bytes
/
Dockerfile
File metadata and controls
26 lines (18 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM python:3.7.3-stretch
COPY config-docker.yaml /config.yaml
COPY setup.py /
COPY cryptostore /cryptostore
## Add any keys, config files, etc needed here
# COPY access-key.json /
RUN apt install gcc git
RUN pip install --no-cache-dir git+https://github.com/bmoscon/cryptofeed.git
RUN pip install --no-cache-dir cython
RUN pip install --no-cache-dir pyarrow
RUN pip install --no-cache-dir redis
RUN pip install --no-cache-dir git+https://github.com/aio-libs/aioredis-py@4dfdc05
RUN pip install --no-cache-dir arctic
RUN pip install --no-cache-dir boto3
## Add any extra dependencies you might have
# eg RUN pip install --no-cache-dir boto3
RUN pip install -e .
ENTRYPOINT [ "cryptostore" ]