Skip to content

Commit

Permalink
prod-rs
Browse files Browse the repository at this point in the history
  • Loading branch information
biglittlebigben committed Jan 11, 2024
1 parent bdc4fb2 commit e9cb9e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 2 additions & 0 deletions build/gstreamer/Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ ENV DEBUG=true
ENV OPTIMIZATIONS=false

COPY compile /
COPY compile-rs /

RUN /compile
RUN /compile-rs

FROM ubuntu:23.10

Expand Down
2 changes: 0 additions & 2 deletions build/gstreamer/Dockerfile-prod
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ ENV DEBUG=false
ENV OPTIMIZATIONS=true

COPY compile /
COPY compile-rs /

RUN /compile
RUN /compile-rs

FROM ubuntu:23.10

Expand Down
2 changes: 1 addition & 1 deletion magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func PublishGStreamer() error {

func buildGstreamer(cmd string) error {
commands := []string{"docker pull ubuntu:23.10"}
for _, build := range []string{"base", "dev", "prod"} {
for _, build := range []string{"base", "dev", "prod", "prod-rs"} {
commands = append(commands, fmt.Sprintf("%s"+
" --build-arg GSTREAMER_VERSION=%s"+
" --build-arg LIBNICE_VERSION=%s"+
Expand Down

0 comments on commit e9cb9e1

Please sign in to comment.