0
|
1 FROM bang6:5000/base_x86
|
|
2
|
|
3 WORKDIR /opt
|
|
4
|
|
5 RUN DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata vim
|
|
6
|
|
7 COPY requirements.txt ./
|
|
8 RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt
|
|
9 RUN pip3 install -U 'https://github.com/drewp/cyclone/archive/python3.zip?v3'
|
|
10
|
|
11 COPY shaka-player/dist/shaka-player.compiled.* ./shaka-player/dist/
|
|
12
|
|
13 COPY *.py *.html *.css *.js *.n3 ./
|
|
14 COPY build/* build/
|
|
15
|
|
16 CMD [ "python3", "./video.py" ]
|