Skip to content

Commit

Permalink
remove unused packages
Browse files Browse the repository at this point in the history
  • Loading branch information
kozakura913 committed Apr 18, 2024
1 parent 2f7297f commit 8241e2b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
FROM alpine:edge
RUN apk add --no-cache clang musl-dev curl meson ninja pkgconfig git nasm
RUN apk add --no-cache clang musl-dev meson ninja pkgconfig nasm
COPY dav1d /dav1d_src
WORKDIR /dav1d_src
RUN meson build -Dprefix=/dav1d -Denable_tools=false -Denable_examples=false -Ddefault_library=static --buildtype release
RUN ninja -C build && ninja -C build install
RUN ninja -C build
RUN ninja -C build install

FROM alpine:edge
COPY --from=0 /dav1d /dav1d
Expand Down

0 comments on commit 8241e2b

Please sign in to comment.