[docker]: Make line breaks consistent in DHCP relay Dockerfile (#203)

This commit is contained in:
Joe LeVeque 2017-01-20 22:33:11 -08:00 committed by Shuotian Cheng
parent ea65962fe4
commit 78f11a7ff3

View File

@ -3,11 +3,12 @@ FROM docker-base
## Make apt-get non-interactive
ENV DEBIAN_FRONTEND=noninteractive
## Install isc-dhcp-relay
## Clean up
RUN apt-get update && apt-get -y install \
isc-dhcp-relay && \
apt-get clean -y; apt-get autoclean -y; apt-get autoremove -y
## Install isc-dhcp-relay and clean up afterward
RUN apt-get update \
&& apt-get -y install isc-dhcp-relay \
&& apt-get clean -y \
&& apt-get autoclean -y \
&& apt-get autoremove -y
COPY isc-dhcp-relay /etc/default/isc-dhcp-relay