Fix empty continuation lines.

This commit is contained in:
Alexis Lahouze 2018-11-25 20:04:42 +01:00
parent 0add268e22
commit f9fd6b22ae

View File

@ -2,18 +2,18 @@ FROM python:3.7-alpine
RUN apk add --no-cache --virtual .build-deps \ RUN apk add --no-cache --virtual .build-deps \
git make gcc musl-dev asciidoc \ git make gcc musl-dev asciidoc \
\
# Install deps # Install deps
&& pip install snakeoil \ && pip install snakeoil \
\
# Clone catalyst repository # Clone catalyst repository
&& git clone https://anongit.gentoo.org/git/proj/catalyst.git catalyst \ && git clone https://anongit.gentoo.org/git/proj/catalyst.git catalyst \
\
# Build and install catalyst # Build and install catalyst
&& cd catalyst \ && cd catalyst \
&& make \ && make \
&& python -m setup install \ && python -m setup install \
\
# Cleanup # Cleanup
&& cd .. \ && cd .. \
&& rm -Rf catalyst \ && rm -Rf catalyst \