Mercurial > code > home > repos > video
diff Dockerfile @ 0:3f2da406c788
start
author | drewp@bigasterisk.com |
---|---|
date | Tue, 21 Jul 2020 23:28:04 -0700 |
parents | |
children | 78c1a2983010 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Dockerfile Tue Jul 21 23:28:04 2020 -0700 @@ -0,0 +1,16 @@ +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" ]