2
0
mirror of https://github.com/linka-cloud/d2vm.git synced 2024-06-25 16:19:51 +00:00
d2vm/templates/ubuntu.Dockerfile

19 lines
366 B
Docker
Raw Normal View History

FROM {{ .Image }}
USER root
RUN apt-get update -y && \
DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \
linux-image-virtual \
initramfs-tools \
systemd-sysv \
systemd \
dbus \
udhcpc \
iproute2 \
iputils-ping
RUN systemctl preset-all
RUN echo "root:{{- if .Password}}{{ .Password}}{{- else}}root{{- end}}" | chpasswd