Skip to content

Commit

Permalink
update dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
oguzhan-yilmaz committed Dec 8, 2024
1 parent 8692f44 commit 8a4a4b2
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,20 @@ RUN apt-get install -y libsndfile1 rubberband-cli ffmpeg \
# i know this is ugly but its the only configuration that works
RUN pip3 install Cython==0.29.36 setuptools==50.1.0
RUN pip3 install numpy==1.19.0
RUN pip3 install pyrubberband
RUN pip3 install essentia
RUN pip3 install yodel
RUN pip3 install typer
RUN pip3 install mido
RUN pip3 install pyrubberband==0.4.0
RUN pip3 install essentia==2.1b6.dev374
RUN pip3 install yodel==0.3.0
RUN pip3 install typer==0.14.0
RUN pip3 install mido==1.3.3
RUN pip3 install scipy==1.6.3
RUN pip3 install madmom --no-dependencies
RUN pip3 install madmom==0.16.1 --no-dependencies


# Copy the current directory contents into the container at /app
# COPY pycrossfade/ pycrossfade/
COPY pycrossfade/ pycrossfade/

# Define environment variable
ENV NAME=pyCrossfade
# Run pycrossfade/cli.py when the container launches
ENTRYPOINT ["python3", "pycrossfade/cli.py"]

# Run app.py when the container launches
# CMD ["python", "pycrossfade/cli.py"]
CMD ["sleep", "infinity"]

# CMD ["sleep", "infinity"]

0 comments on commit 8a4a4b2

Please sign in to comment.