mirror of https://github.com/ekimekim/wubloader
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
609 B
Docker
17 lines
609 B
Docker
FROM ubuntu:18.04
|
|
# dependencies needed for compiling c extensions
|
|
RUN chmod 1777 /tmp && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install --yes python-pip python-dev file gcc make ffmpeg
|
|
|
|
# Install gevent so that we don't need to re-install it when common changes
|
|
RUN pip install gevent
|
|
|
|
# Install common lib first as it changes less
|
|
COPY common /tmp/common
|
|
RUN pip install /tmp/common && rm -r /tmp/common
|
|
|
|
# Install actual application
|
|
COPY restreamer /tmp/restreamer
|
|
RUN pip install /tmp/restreamer && rm -r /tmp/restreamer
|
|
|
|
ENTRYPOINT ["python2", "-m", "restreamer", "--base-dir", "/mnt"]
|