Update kinoje to 0.7 (now on Python-3.6-slim-stretch).
Chris Pressey
3 years ago
0 | |
FROM python:3.5.7-slim-stretch
|
|
0 |
FROM python:3.6-slim-stretch
|
1 | 1 |
RUN apt-get update && apt-get upgrade -y
|
2 | 2 |
RUN apt-get install -y povray povray-includes ffmpeg imagemagick librsvg2-bin
|
3 | 3 |
RUN mkdir /mnt/host
|
0 | |
The image contains kinoje ( https://catseye.tc/node/kinoje ), its dependencies (Python 3.5.7-slim-stretch, PyYaml, Jinja2, tqdm), and the programs it's commonly used with (POV-Ray, ImageMagick, rsvg-convert, and ffmpeg).
|
|
0 |
The image contains kinoje ( https://catseye.tc/node/kinoje ), its dependencies (Python 3.6-slim-stretch, PyYaml, Jinja2, tqdm), and the programs it's commonly used with (POV-Ray, ImageMagick, rsvg-convert, and ffmpeg).
|
1 | 1 |
|
2 | 2 |
Example of use:
|
3 | 3 |
|
4 | |
docker pull catseye/kinoje:0.6
|
5 | |
docker run --user $(id -u):$(id -g) -i -t -v "${PWD}:/mnt/host" catseye/kinoje:0.6 \
|
|
4 |
docker pull catseye/kinoje:0.7
|
|
5 |
docker run --user $(id -u):$(id -g) -i -t -v "${PWD}:/mnt/host" catseye/kinoje:0.7 \
|
6 | 6 |
kinoje eg/moebius.yaml -o moebius.mp4
|
7 | 7 |
|
8 | 8 |
Notes:
|
0 | 0 |
#!/bin/sh
|
1 | 1 |
|
2 | |
. settings.sh
|
|
2 |
. ./settings.sh
|
3 | 3 |
. ../build-docker-image.sh
|
0 | 0 |
SOURCE=kinoje
|
1 | 1 |
IMAGENAME=kinoje
|
2 | |
VERSION=0.6
|
|
2 |
VERSION=0.7
|