Skip to content

Commit

Permalink
[docker]: Make line breaks consistent in DHCP relay Dockerfile (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
jleveque authored and Shuotian Cheng committed Jan 21, 2017
1 parent ea65962 commit 78f11a7
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions dockers/docker-dhcp-relay/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 78f11a7

Please sign in to comment.