forked from Docker/baseimage-docker
21 lines
441 B
Docker
21 lines
441 B
Docker
ARG BASE_IMAGE=ubuntu:18.04
|
|
FROM $BASE_IMAGE
|
|
MAINTAINER Iwan <iwanpub.phusion_fr@mg.familleclement.space>
|
|
|
|
ARG QEMU_ARCH
|
|
ADD x86_64_qemu-${QEMU_ARCH}-static.tar.gz /usr/bin
|
|
|
|
COPY . /bd_build
|
|
|
|
RUN /bd_build/prepare.sh && \
|
|
/bd_build/system_services.sh && \
|
|
/bd_build/utilities.sh && \
|
|
/bd_build/cleanup.sh
|
|
|
|
ENV DEBIAN_FRONTEND="teletype" \
|
|
LANG="fr_FR.UTF-8" \
|
|
LANGUAGE="fr_FR:fr" \
|
|
LC_ALL="fr_FR.UTF-8"
|
|
|
|
CMD ["/sbin/my_init"]
|