Fixed issue with python being wrong on docker

This commit is contained in:
Jaret Burkett
2025-03-24 14:16:09 -06:00
parent 45be82d5d6
commit 71d7a52146
2 changed files with 2 additions and 3 deletions

View File

@@ -38,8 +38,7 @@ RUN curl -sL https://deb.nodesource.com/setup_23.x -o nodesource_setup.sh && \
WORKDIR /app
# Set aliases for python and pip
RUN echo 'alias python=python3' >> /etc/bash.bashrc && \
echo 'alias pip=pip3' >> /etc/bash.bashrc
RUN ln -s /usr/bin/python3 /usr/bin/python
# install pytorch before cache bust to avoid redownloading pytorch
RUN pip install --no-cache-dir torch==2.6.0 torchvision==0.21.0 --index-url https://download.pytorch.org/whl/cu126

View File

@@ -1 +1 @@
VERSION = "0.2.1"
VERSION = "0.2.2"