Initial TradeBot implementation
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
FROM python:3.12-slim
|
||||
|
||||
WORKDIR /app
|
||||
COPY requirements.txt /app/requirements.txt
|
||||
RUN pip install --no-cache-dir --upgrade pip \
|
||||
&& pip install --no-cache-dir -r /app/requirements.txt
|
||||
|
||||
COPY crypto_spot_bot /app/crypto_spot_bot
|
||||
COPY README.md /app/README.md
|
||||
RUN mkdir -p /app/runtime
|
||||
|
||||
EXPOSE 8787
|
||||
CMD ["python", "-m", "crypto_spot_bot.main"]
|
||||
Reference in New Issue
Block a user