From 2f156edafdcc282809e24f10c64c16d650f89c98 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Fri, 29 Jul 2016 13:19:44 +0300 Subject: [PATCH] Fix syntax error in the beanstalkd-console dockerfile --- beanstalkd-console/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/beanstalkd-console/Dockerfile b/beanstalkd-console/Dockerfile index 5bebdd52..b07f1e36 100644 --- a/beanstalkd-console/Dockerfile +++ b/beanstalkd-console/Dockerfile @@ -7,9 +7,9 @@ RUN apt-get update && apt-get install -y curl RUN curl -sL https://github.com/ptrofimov/beanstalk_console/archive/master.tar.gz | tar xvz -C /tmp RUN mv /tmp/beanstalk_console-master /source -RUN apt-get remove --purge -y curl && - apt-get autoclean && - apt-get clean && +RUN apt-get remove --purge -y curl && \ + apt-get autoclean && \ + apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* EXPOSE 2080