[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
|
## Make apt-get non-interactive
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
## Install isc-dhcp-relay
|
## Install isc-dhcp-relay and clean up afterward
|
||||||
## Clean up
|
RUN apt-get update \
|
||||||
RUN apt-get update && apt-get -y install \
|
&& apt-get -y install isc-dhcp-relay \
|
||||||
isc-dhcp-relay && \
|
&& apt-get clean -y \
|
||||||
apt-get clean -y; apt-get autoclean -y; apt-get autoremove -y
|
&& apt-get autoclean -y \
|
||||||
|
&& apt-get autoremove -y
|
||||||
|
|
||||||
COPY isc-dhcp-relay /etc/default/isc-dhcp-relay
|
COPY isc-dhcp-relay /etc/default/isc-dhcp-relay
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user