Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change Dockerfile to support ffmpeg version 4 #288

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Change Dockerfile to support ffmpeg version 4 #288

wants to merge 1 commit into from

Conversation

sepisoltani
Copy link

Container should have ffmpeg version 4 on it . But Dockerfile has no ffmpeg support .
So hls and dash cant start when runing container . I changed dockerfile to install ffmepg version 4 to fix this problem .

@hthetiot
Copy link
Contributor

hthetiot commented Jun 3, 2020

Here is my current solution using sitkevij/ffmpeg:4.0-alpine reference instead of duplicating content:

FROM sitkevij/ffmpeg:4.0-alpine
FROM node:10.15.0-alpine

# copy ffmpeg bins from first image
COPY --from=0 / /

WORKDIR /usr/src/app

COPY package*.json ./

RUN npm i

COPY . .

EXPOSE 1935 8000

CMD ["node","app.js"]

@hthetiot
Copy link
Contributor

hthetiot commented Jun 11, 2020

Made new PR with fixed Dockerfile labels and OpenSSL for RTMPS support:

@hthetiot
Copy link
Contributor

hthetiot commented Jan 12, 2021

Duplicate of merged PR #356 can be closed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants