added libc6-compat to dockerfile

This commit is contained in:
Jasper Hugo 2021-08-16 14:30:37 +07:00
parent 89d78b4800
commit e86ed026c1
1 changed files with 1 additions and 1 deletions

View File

@ -4,6 +4,6 @@ COPY . .
RUN cargo build --release -p gst-meet RUN cargo build --release -p gst-meet
FROM docker.io/alpine:3.14 FROM docker.io/alpine:3.14
RUN apk --update --no-cache add glib gstreamer libnice RUN apk --update --no-cache add glib gstreamer libnice libc6-compat
COPY --from=builder target/release/gst-meet /usr/local/bin COPY --from=builder target/release/gst-meet /usr/local/bin
ENTRYPOINT ["/usr/local/bin/gst-meet"] ENTRYPOINT ["/usr/local/bin/gst-meet"]