Skip to content

Commit

Permalink
config: update Dockerfile to install Python dependencies
Browse files Browse the repository at this point in the history
Co-authored-by: Victoria-Mag [email protected]
Co-authored-by: KuzzyKabana [email protected]
  • Loading branch information
kugamigh committed Sep 18, 2021
1 parent f6af5f3 commit 0993820
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ RUN apt-get update
RUN apt-get install -y python3 python3-pip

# Install python/pip
# RUN python3 -m ensurepip
RUN pip3 install --no-cache --upgrade pip setuptools

# Get speaker-verification repo
RUN git clone https://github.com/OnTrack-UG-Squad/speaker-verification.git
RUN git clone -b fix/logger-issues https://github.com/OnTrack-UG-Squad/speaker-verification.git

RUN export PYTHONPATH=${PYTHONPATH}:/speaker-verification

RUN pip3 install -r ./speaker-verification/requirements.txt

# Install bundler
RUN gem install bundler
Expand Down

0 comments on commit 0993820

Please sign in to comment.