This commit is contained in:
Jeffrey Paul 2020-03-01 03:54:20 -08:00
parent 14ade0cb9b
commit 6f195d15e3
3 changed files with 18 additions and 0 deletions

6
.drone.yml Normal file
View File

@ -0,0 +1,6 @@
kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
# focal 2020.01 dev
FROM ubuntu@sha256:d050ed7278c16ff627e4a70d7d353f1a2ec74d8a0b66e5a865356d92f5f6d87b
ADD ./sources.list /etc/apt/sources.list
COPY https://sneak.cloud/authorized_keys /root/.ssh/authorized_keys
RUN apt update && apt -y upgrade && apt -y install runit build-essential

4
sources.list Normal file
View File

@ -0,0 +1,4 @@
deb https://ubuntu.datavi.be/ubuntu focal main universe restricted multiverse
deb https://ubuntu.datavi.be/ubuntu focal-updates main universe restricted multiverse
deb https://ubuntu.datavi.be/ubuntu focal-backports main universe restricted multiverse
deb https://ubuntu.datavi.be/ubuntu focal-security main universe restricted multiverse