From 6ce90d6841fb48ff5904f49c1069c1a78ec0fbc2 Mon Sep 17 00:00:00 2001 From: Zac Joffe Date: Thu, 30 May 2019 10:22:10 -0400 Subject: [PATCH] Fixed Dockerfile --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4353e6e..7d9ea64 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,13 @@ -FROM debian:wheezy +FROM debian/eol:wheezy MAINTAINER Dave Wittman ENV MONGODB_VERSION debian71-3.2.0 +ENV DEBIAN_FRONTEND noninteractive ENV PATH /opt/mongodb/bin:${PATH} -RUN apt-get update && apt-get install -y curl && \ +RUN apt-get update && apt-get install -y --no-install-recommends apt-utils && \ + apt-get install -y curl && \ + apt-get install -y git && \ curl -sL https://deb.nodesource.com/setup_5.x | bash - && \ apt-get install -y nodejs && \ mkdir -p /opt/mongodb && \