initial version

This commit is contained in:
2023-04-28 17:09:15 +02:00
parent 74755a16e5
commit 51d959891d
29 changed files with 2623 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM debian:latest
RUN apt-get update \
&& apt-get install -y npm node-commander git \
&& git clone https://github.com/binance/binance-cli \
&& cd binance-cli \
&& npm install @binance/connector \
&& npm install -g \
&& ln -s /usr/local/lib/node_modules/\@binance/ /usr/lib/nodejs/
ENV LANG en_US.utf8
COPY ./docker-entrypoint.sh /
ENTRYPOINT ["/docker-entrypoint.sh"]