Bushra-KB commited on
Commit
3f23b61
·
verified ·
1 Parent(s): a4bb334

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -25,9 +25,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
25
  libsndfile1 ffmpeg perl && \
26
  rm -rf /var/lib/apt/lists/*
27
 
28
- # Copy the uroman script from the builder stage and create the symlink
29
- COPY --from=uroman-builder /usr/local/lib/python3.10/site-packages/uroman/bin /opt/uroman
30
- RUN ln -s /opt/uroman/uroman.pl /usr/local/bin/uroman
31
 
32
  WORKDIR /app
33
 
 
25
  libsndfile1 ffmpeg perl && \
26
  rm -rf /var/lib/apt/lists/*
27
 
28
+ # Copy the uroman script from the builder stage. It's placed in /usr/local/bin by pip.
29
+ COPY --from=uroman-builder /usr/local/bin/uroman /usr/local/bin/uroman
 
30
 
31
  WORKDIR /app
32