Skip to content

Commit

Permalink
Copy over cmd.sh (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
joecorall authored Sep 19, 2024
1 parent cf7bb0a commit 9e35d90
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/whisper/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ RUN bash ./models/download-ggml-model.sh base.en

COPY --from=scyllaridae /app /app
COPY scyllaridae.yml /app
COPY cmd.sh /app

RUN apt-get update && apt-get install -y gosu=1.14-1 --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& groupadd -r nobody \
&& useradd -r -g nobody scyllaridae \
&& chmod +x /app/docker-entrypoint.sh
&& chmod +x /app/docker-entrypoint.sh /app/cmd.sh

ENTRYPOINT ["/app/docker-entrypoint.sh"]

0 comments on commit 9e35d90

Please sign in to comment.