Skip to content

Commit

Permalink
Fixed some missing backslashes.
Browse files Browse the repository at this point in the history
🤦
  • Loading branch information
Frzk committed Feb 1, 2018
1 parent 22595e9 commit b24ab8f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Expand Up @@ -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) \
Expand Down

0 comments on commit b24ab8f

Please sign in to comment.