Skip to content
This repository has been archived by the owner on Jan 2, 2021. It is now read-only.

Fix python interpreter not found owing to being updated #161

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-cpu.df
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN wget --quiet https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86
WORKDIR /ne
COPY requirements.txt .
RUN /opt/conda/bin/conda install -q -y conda numpy scipy pip pillow
RUN /opt/conda/bin/python3.5 -m pip install -q -r "requirements.txt"
RUN /opt/conda/bin/python3 -m pip install -q -r "requirements.txt"

# Copy only required project files
COPY enhance.py .
Expand Down
2 changes: 1 addition & 1 deletion docker-gpu.df
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN wget --quiet https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86
WORKDIR /ne
COPY requirements.txt .
RUN /opt/conda/bin/conda install -q -y conda numpy scipy pip pillow
RUN /opt/conda/bin/python3.5 -m pip install -q -r "requirements.txt"
RUN /opt/conda/bin/python3 -m pip install -q -r "requirements.txt"

# Copy only required project files
COPY enhance.py .
Expand Down