From 8275a462dc9c25d56905d496ec8b716df3d95b5f Mon Sep 17 00:00:00 2001 From: Zachary Boyd Date: Sun, 6 May 2018 09:26:49 -0700 Subject: [PATCH] Upgrade the version of ubuntu in the dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index dbad68e..dff0128 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:17.10 +FROM ubuntu:18.04 WORKDIR /app @@ -12,7 +12,7 @@ ENV PATH $PATH:/app/bin ADD https://deb.nodesource.com/setup_8.x /tmp/nodejs_install -RUN apt update && apt -y install dirmngr +RUN apt-get update && apt-get -y install dirmngr RUN gpg --keyserver keys.gnupg.net --recv A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 && gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | apt-key add - @@ -20,7 +20,7 @@ ADD tor-sources.list /etc/apt/sources.list.d/tor.list RUN bash /tmp/nodejs_install -RUN apt install -y nodejs tor git +RUN apt-get install -y nodejs tor git ADD package.json /app/package.json