From b24ab8fb03772c52e5e37dce3bfc2b00e3792c15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20KUBLER?= Date: Thu, 1 Feb 2018 15:32:19 +0100 Subject: [PATCH] Fixed some missing backslashes. :facepalm: --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 43ae706..1920840 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,12 +4,12 @@ FROM centos:7 LABEL maintainer="François KUBLER" # Install systemd -- See https://hub.docker.com/_/centos/ -RUN yum -y remove +RUN yum -y remove \ fakesystemd \ - && yum -y install + && yum -y install \ python-pip \ systemd \ - systemd-libs + systemd-libs \ && yum -y clean all RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; done) \