-
Notifications
You must be signed in to change notification settings - Fork 6
/
Dockerfile
63 lines (53 loc) · 2 KB
/
Dockerfile
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
FROM ghcr.io/deephaven/server:${VERSION:-latest} AS dx-server
COPY data/app.d /app.d
COPY data/storage/layouts /data/layouts
FROM python:3.8 AS dxfeed-publish-all
COPY dxfeed/requirements.txt .
RUN pip install -r requirements.txt
COPY dxfeed/publish_all_tables.py .
CMD [ "python3", "publish_all_tables.py"]
FROM python:3.8 AS dxfeed-publish-trade
COPY dxfeed/requirements.txt .
RUN pip install -r requirements.txt
COPY dxfeed/publish_trade_table.py .
CMD [ "python3", "publish_trade_table.py"]
FROM python:3.8 AS dxfeed-publish-quote
COPY dxfeed/requirements.txt .
RUN pip install -r requirements.txt
COPY dxfeed/publish_quote_table.py .
CMD [ "python3", "publish_quote_table.py"]
FROM python:3.8 AS dxfeed-publish-candle
COPY dxfeed/requirements.txt .
RUN pip install -r requirements.txt
COPY dxfeed/publish_candle_table.py .
CMD [ "python3", "publish_candle_table.py"]
FROM python:3.8 AS dxfeed-publish-profile
COPY dxfeed/requirements.txt .
RUN pip install -r requirements.txt
COPY dxfeed/publish_profile_table.py .
CMD [ "python3", "publish_profile_table.py"]
FROM python:3.8 AS dxfeed-publish-summary
COPY dxfeed/requirements.txt .
RUN pip install -r requirements.txt
COPY dxfeed/publish_summary_table.py .
CMD [ "python3", "publish_summary_table.py"]
FROM python:3.8 AS dxfeed-publish-order
COPY dxfeed/requirements.txt .
RUN pip install -r requirements.txt
COPY dxfeed/publish_order_table.py .
CMD [ "python3", "publish_order_table.py"]
FROM python:3.8 AS dxfeed-publish-underlying
COPY dxfeed/requirements.txt .
RUN pip install -r requirements.txt
COPY dxfeed/publish_underlying_table.py .
CMD [ "python3", "publish_underlying_table.py"]
FROM python:3.8 AS dxfeed-publish-timeandsale
COPY dxfeed/requirements.txt .
RUN pip install -r requirements.txt
COPY dxfeed/publish_timeAndSale_table.py .
CMD [ "python3", "publish_timeAndSale_table.py"]
FROM python:3.8 AS dxfeed-publish-series
COPY dxfeed/requirements.txt .
RUN pip install -r requirements.txt
COPY dxfeed/publish_series_table.py .
CMD [ "python3", "publish_series_table.py"]