Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -8,7 +8,7 @@ WORKDIR /app
|
|
| 8 |
ADD . /app
|
| 9 |
|
| 10 |
# Create a new environment and install dependencies
|
| 11 |
-
RUN conda create -n myenv python=3.
|
| 12 |
/opt/conda/envs/myenv/bin/pip install spleeter==2.1.0 autochord==0.0.1 pretty_midi==0.2.9 librosa==0.8.1 matchering==2.0.1 pedalboard==0.4.0 scipy==1.7.1
|
| 13 |
|
| 14 |
# Expose the port Flask is running on
|
|
|
|
| 8 |
ADD . /app
|
| 9 |
|
| 10 |
# Create a new environment and install dependencies
|
| 11 |
+
RUN conda create -n myenv python=3.9 numpy=1.19.5 flask=2.0.2 && \
|
| 12 |
/opt/conda/envs/myenv/bin/pip install spleeter==2.1.0 autochord==0.0.1 pretty_midi==0.2.9 librosa==0.8.1 matchering==2.0.1 pedalboard==0.4.0 scipy==1.7.1
|
| 13 |
|
| 14 |
# Expose the port Flask is running on
|