This repository was archived by the owner on Feb 17, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +740
-4
lines changed
Expand file tree Collapse file tree 6 files changed +740
-4
lines changed Original file line number Diff line number Diff line change 1+ FROM lsiobase/ubuntu:arm64v8-xenial
2+
3+ # environment settings
4+ ARG DEBIAN_FRONTEND="noninteractive"
5+
6+ RUN \
7+ echo "**** install apt-transport-https ****" && \
8+ apt-get update && \
9+ apt-get install -y apt-transport-https && \
10+ echo "**** add mono repository ****" && \
11+ apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF && \
12+ echo "deb http://download.mono-project.com/repo/ubuntu xenial/snapshots/5.14 main" | tee /etc/apt/sources.list.d/mono-official.list && \
13+ echo "**** add mediaarea repository ****" && \
14+ apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys C5CDF62C7AE05CC847657390C10E11090EC0E438 && \
15+ echo "deb https://mediaarea.net/repo/deb/ubuntu xenial main" | tee /etc/apt/sources.list.d/mediaarea.list && \
16+ echo "**** install packages ****" && \
17+ apt-get update && \
18+ apt-get install -y \
19+ --no-install-recommends \
20+ --no-install-suggests \
21+ bzip2 \
22+ ca-certificates-mono \
23+ libcurl4-openssl-dev \
24+ mediainfo \
25+ mono-devel \
26+ mono-vbnc \
27+ python \
28+ sqlite3 \
29+ unzip && \
30+ echo "**** clean up ****" && \
31+ rm -rf \
32+ /tmp/* \
33+ /var/lib/apt/lists/* \
34+ /var/tmp/*
Original file line number Diff line number Diff line change 1+ FROM lsiobase/ubuntu:arm32v7-xenial
2+
3+ # environment settings
4+ ARG DEBIAN_FRONTEND="noninteractive"
5+
6+ RUN \
7+ echo "**** install apt-transport-https ****" && \
8+ apt-get update && \
9+ apt-get install -y apt-transport-https && \
10+ echo "**** add mono repository ****" && \
11+ apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF && \
12+ echo "deb http://download.mono-project.com/repo/ubuntu xenial/snapshots/5.14 main" | tee /etc/apt/sources.list.d/mono-official.list && \
13+ echo "**** add mediaarea repository ****" && \
14+ apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys C5CDF62C7AE05CC847657390C10E11090EC0E438 && \
15+ echo "deb https://mediaarea.net/repo/deb/ubuntu xenial main" | tee /etc/apt/sources.list.d/mediaarea.list && \
16+ echo "**** install packages ****" && \
17+ apt-get update && \
18+ apt-get install -y \
19+ --no-install-recommends \
20+ --no-install-suggests \
21+ bzip2 \
22+ ca-certificates-mono \
23+ libcurl4-openssl-dev \
24+ mediainfo \
25+ mono-devel \
26+ mono-vbnc \
27+ python \
28+ sqlite3 \
29+ unzip && \
30+ echo "**** clean up ****" && \
31+ rm -rf \
32+ /tmp/* \
33+ /var/lib/apt/lists/* \
34+ /var/tmp/*
You can’t perform that action at this time.
0 commit comments