Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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
|
| 29 |
-
COPY --from=uroman-builder /usr/local/
|
| 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 |
|