Skip to content

Commit

Permalink
Merge pull request #131 from danielcamposramos/patch-9
Browse files Browse the repository at this point in the history
Update Dockerfile
  • Loading branch information
pluja authored Jan 27, 2025
2 parents 5fe8e48 + 869d342 commit 8f031c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ RUN apt update && apt install -y wget
RUN wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O /usr/local/bin/yt-dlp
RUN chmod a+rx /usr/local/bin/yt-dlp

FROM devopsworks/golang-upx:latest as builder
ENV DEBIAN_FRONTEND noninteractive
FROM devopsworks/golang-upx:1.23 as builder
ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /app
COPY . .
RUN go mod tidy
Expand All @@ -27,4 +27,4 @@ COPY --from=ytdlp_cache /usr/local/bin/yt-dlp /bin/yt-dlp
RUN mkdir /app/uploads

EXPOSE 8080
ENTRYPOINT [ "/app/whishper", "-addr", ":8080" ]
ENTRYPOINT [ "/app/whishper", "-addr", ":8080" ]

0 comments on commit 8f031c8

Please sign in to comment.