[docker]: Make line breaks consistent in DHCP relay Dockerfile (#203)
This commit is contained in:
parent
ea65962fe4
commit
78f11a7ff3
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user