Mercurial > code > home > repos > video
view Dockerfile @ 0:3f2da406c788
start
author | drewp@bigasterisk.com |
---|---|
date | Tue, 21 Jul 2020 23:28:04 -0700 |
parents | |
children | 78c1a2983010 |
line wrap: on
line source
FROM bang6:5000/base_x86 WORKDIR /opt RUN DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata vim COPY requirements.txt ./ RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt RUN pip3 install -U 'https://github.com/drewp/cyclone/archive/python3.zip?v3' COPY shaka-player/dist/shaka-player.compiled.* ./shaka-player/dist/ COPY *.py *.html *.css *.js *.n3 ./ COPY build/* build/ CMD [ "python3", "./video.py" ]