Jeffrey Paul hace 4 años
commit 13c28cad52
  1. 3
      Dockerfile
  2. 4
      Makefile
  3. 4
      README.md
  4. 5
      run.sh

@ -0,0 +1,3 @@
FROM ubuntu:bionic
ADD ./run.sh /tmp/run.sh
RUN bash /tmp/run.sh && rm /tmp/run.sh

@ -0,0 +1,4 @@
default: build
build:
docker build .

@ -0,0 +1,4 @@
# sneak/docker-linux-vm
This is designed to run stuff that needs privileged access inside an
unprivileged container, by running a whole qemu vm inside the container.

@ -0,0 +1,5 @@
#!/bin/bash
export DEBIAN_FRONTEND=noninteractive
apt update
apt install -y qemu-user