From 88dff86b8ca813e6fa76f0fa038fa1e117585a53 Mon Sep 17 00:00:00 2001 From: Flynn Joffray Date: Sat, 2 Feb 2019 12:35:20 -0800 Subject: [PATCH] typo in docker build --- Dockerfile | 2 +- Dockerfile.template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6382bf4..2136c5f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ COPY . /opt/oak RUN npm install \ && npm test \ && npm prune --production \ - && apt-get install -y xvfb xauth \ + && apt-get remove --purge -y xvfb xauth \ && apt-get autoremove -y \ && npm link \ && apt-get clean \ diff --git a/Dockerfile.template b/Dockerfile.template index 9ba0cd4..a9a92c1 100644 --- a/Dockerfile.template +++ b/Dockerfile.template @@ -32,7 +32,7 @@ COPY . /opt/oak RUN npm install \ && npm test \ && npm prune --production \ - && apt-get install -y xvfb xauth \ + && apt-get remove --purge -y xvfb xauth \ && apt-get autoremove -y \ && npm link \ && apt-get clean \