소스 검색

Add Dockerfile

Tomishinets Vladimir 5 년 전
부모
커밋
9e444cd899
2개의 변경된 파일22개의 추가작업 그리고 0개의 파일을 삭제
  1. 20 0
      Dockerfile
  2. 2 0
      container.target

+ 20 - 0
Dockerfile

@@ -0,0 +1,20 @@
+FROM debian:stretch
+
+ENV container docker
+ENV LC_ALL C
+ENV DEBIAN_FRONTEND noninteractive
+
+COPY container.target /etc/systemd/system/container.target
+
+RUN apt update && \
+    apt install -y systemd python && \
+    ln -sf /etc/systemd/system/container.target /etc/systemd/system/default.target && \
+    ln -sf /lib/systemd/systemd /sbin/init && \
+    apt-get clean && \
+    && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
+
+ENTRYPOINT ["/sbin/init"]
+
+CMD ["--log-level=info"]
+
+STOPSIGNAL SIGRTMIN+3

+ 2 - 0
container.target

@@ -0,0 +1,2 @@
+[Unit]
+Description=Special target for running systemd in docker containers