Skip to content

Commit

Permalink
feat: updated Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
muellerdo committed Jan 23, 2024
1 parent 76a0f2d commit b513a4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ RUN apt-get update && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# Update Python pip
RUN python -m pip install pip --upgrade
RUN python3.10 -m pip install pip --upgrade

# Install DeepGleason from local git repo
RUN pip install -r /root/DeepGleason/requirements.txt
RUN python3.10 -m pip install -r /root/DeepGleason/requirements.txt

# Create working directory
VOLUME ["/data"]
Expand All @@ -56,4 +56,4 @@ WORKDIR "/root/DeepGleason/"
#-----------------------------------------------------#
# Startup #
#-----------------------------------------------------#
ENTRYPOINT ["code/main.py"]
ENTRYPOINT ["python3.10 code/main.py --input /data/ --output /data/ --model models/model.ConvNeXtBase --predictions /data/predictions.csv"]

0 comments on commit b513a4e

Please sign in to comment.