Skip to content

Commit

Permalink
Merge pull request #16 from olipayne/patch-1
Browse files Browse the repository at this point in the history
Update Dockerfile
  • Loading branch information
kahst authored May 27, 2022
2 parents c41685e + 27c0935 commit 5610b92
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM python:3.8-slim
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg && rm -rf /var/lib/apt/lists/*

# Install required Python packages
RUN pip3 install numpy scipy librosa
RUN pip3 install numpy scipy librosa bottle

# Install Tensforflow
RUN pip3 install tensorflow
Expand All @@ -14,4 +14,5 @@ RUN pip3 install tensorflow
COPY . ./

# Add entry point to run the script
ENTRYPOINT [ "python3", "./analyze.py" ]
ENTRYPOINT [ "python3" ]
CMD [ "analyze.py" ]

0 comments on commit 5610b92

Please sign in to comment.