Updated Dockerfile_base

-Added libsndfile1-dev to apt-get command on line 9
-Added ./setup.py copy as line 14
This commit is contained in:
mrguymiah 2022-12-04 15:05:56 -05:00 committed by GitHub
parent 8166ec4c68
commit 20ca6e2749
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,11 +6,12 @@ SHELL ["/bin/bash", "-c"]
WORKDIR /install
RUN apt-get update && \
apt-get install -y wget curl git build-essential zip unzip nano openssh-server libgl1 && \
apt-get install -y wget curl git build-essential zip unzip nano openssh-server libgl1 libsndfile1-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
COPY ./requirements.txt /install/
COPY ./setup.py /install/
RUN /opt/conda/bin/python -m pip install -r /install/requirements.txt