Skip to content

Commit

Permalink
Fix Dockerfile to build the new version
Browse files Browse the repository at this point in the history
  • Loading branch information
daimoc authored and jbg committed Oct 10, 2024
1 parent 1863281 commit 1c94c9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM docker.io/library/alpine:3.18.2 AS builder
FROM docker.io/library/alpine:3.20.0 AS builder
RUN apk --no-cache --update upgrade --ignore alpine-baselayout \
&& apk --no-cache add build-base gstreamer-dev gst-plugins-base-dev libnice-dev openssl-dev cargo
&& apk --no-cache add build-base gstreamer-dev gst-plugins-base-dev libnice-dev openssl-dev cargo cmake clang16-libclang rust-bindgen
COPY . .
RUN cargo build --release -p gst-meet

FROM docker.io/library/alpine:3.18.2
FROM docker.io/library/alpine:3.20.0
RUN apk --update --no-cache upgrade --ignore alpine-baselayout \
&& apk --no-cache add openssl gstreamer gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav libnice libnice-gstreamer
COPY --from=builder target/release/gst-meet /usr/local/bin
Expand Down

0 comments on commit 1c94c9d

Please sign in to comment.