From f9fd6b22ae0d6cd03b4aface8e0fcea40cb49707 Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Sun, 25 Nov 2018 20:04:42 +0100 Subject: [PATCH] Fix empty continuation lines. --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6c08a90..2ad5d96 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,18 +2,18 @@ FROM python:3.7-alpine RUN apk add --no-cache --virtual .build-deps \ git make gcc musl-dev asciidoc \ - + \ # Install deps && pip install snakeoil \ - + \ # Clone catalyst repository && git clone https://anongit.gentoo.org/git/proj/catalyst.git catalyst \ - + \ # Build and install catalyst && cd catalyst \ && make \ && python -m setup install \ - + \ # Cleanup && cd .. \ && rm -Rf catalyst \