Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Commit

Permalink
fix(Dockerfile): added missing packages to image
Browse files Browse the repository at this point in the history
  • Loading branch information
Wittano committed Oct 29, 2023
1 parent 5193da8 commit 3e5e275
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ WORKDIR /builder

COPY . /builder

RUN apk add make
RUN apk add make gcc libc-dev pkgconfig opus-dev

RUN make build

FROM alpine:3.18.4

WORKDIR /app

RUN apk add ffmpeg
RUN apk add ffmpeg opus

COPY --from=builder /builder/build/komputer .

Expand Down

0 comments on commit 3e5e275

Please sign in to comment.