Compare commits

...

3 Commits

Author SHA1 Message Date
shekhar-cis 7f8b4d44aa
updated Dockerfile
buildbot/travis_bionic Build done. Details
2021-11-22 13:48:08 +05:30
shekhar-cis 3cff5093a6
Added Dockerfile.buildozer dependencies 2021-11-22 13:40:56 +05:30
Peter Šurda 5fba2af5c6
Remove kata-containers
- docker support was deprecated
2021-11-19 22:40:28 +08:00
2 changed files with 28 additions and 18 deletions

View File

@ -26,24 +26,6 @@ cores=$(grep -E '^cpu cores' /proc/cpuinfo |head -1|cut -d: -f2|tr -d '[:space:]
mem=$(sed -E 's/^MemTotal: +([0-9]+) kB/\1/p;d' < /proc/meminfo)
mempercore=$(((mem/1024-4096)/cores))
# install kata containers
if ! docker info 2>/dev/null|grep Runtimes:|grep -qs kata-qemu-virtiofs; then
echo "Installing kata...."
cid=$(docker run -d --runtime=runc -v /opt/kata:/opt/kata -v /var/run/dbus:/var/run/dbus -v /run/systemd:/run/systemd -v /etc/docker:/etc/docker -it katadocker/kata-deploy kata-deploy-docker install)
# wait for finish
while [ "$(docker container inspect -f '{{.State.Running}}' "$cid")" == "true" ]; do
sleep 1
done
# delete container
docker rm $cid
# update default container CPU and memory
sed -i "s/default_vcpus = .*/default_vcpus = 2/g;s/default_memory = .*/default-memory = $mempercore/g" /opt/kata/share/defaults/kata-containers/configuration-qemu-virtiofs.toml
echo "Kata installed"
fi
trusty
xenial
bionic

View File

@ -69,6 +69,34 @@ RUN apt-get install -yq --no-install-suggests --no-install-recommends \
RUN apt-get install -yq --no-install-suggests --no-install-recommends \
language-pack-en
# Buildozer dependencies
RUN apt install -qq --yes --no-install-recommends \
autoconf \
automake \
build-essential \
ccache \
cmake \
gettext \
git \
libffi-dev \
libltdl-dev \
libssl-dev \
libtool \
openjdk-8-jdk \
patch \
pkg-config \
python2.7 \
python3-pip \
python3-venv \
python3-setuptools \
sudo \
unzip \
zip \
zlib1g-dev
RUN pip3 install "cython==0.28.6"
RUN pip3 install "buildozer==1.0"
# cleanup
RUN rm -rf /var/lib/apt/lists/*