This commit is contained in:
ai-dev
2025-01-17 13:11:41 +01:00
parent 22a70359a1
commit 4feb1126d1
2 changed files with 4 additions and 5 deletions

View File

@ -78,9 +78,6 @@ RUN mkdir -p build && cd build && \
# Cleanup Arrow source to reduce image size
RUN rm -rf /arrow
# Upgrade pip to the latest version
RUN pip install --upgrade pip setuptools wheel setuptools_scm cython
# Set the working directory
WORKDIR /freqtrade
@ -96,7 +93,8 @@ WORKDIR /freqtrade
RUN python3 -m venv .venv
RUN echo "source /freqtrade/.venv/bin/activate" >> ~/.bashrc
RUN source /freqtrade/.venv/bin/activate
# Upgrade pip to the latest version
RUN pip install --upgrade pip setuptools wheel setuptools_scm cython
RUN python3 -m pip install -r requirements.txt
# install freqtrade