Initial commit
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2022-04-04 14:02:48 +03:00
commit f0ecf8fb89
3 changed files with 58 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM ubuntu:focal
ENV DEBIAN_FRONTEND=noninteractive
ADD custom.sh /tmp/
RUN sed -Eie 's/archive\.ubuntu\.com/ee.archive.ubuntu.com/g' /etc/apt/sources.list \
&& apt-get update \
&& apt-get install --yes --no-install-recommends \
linux-image-generic \
systemd \
systemd-sysv \
fdisk \
grub-efi-amd64 \
ubuntu-desktop \
&& /tmp/custom.sh \
&& apt-get autoremove -y \
&& apt-get clean