summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorYehoshua Pesach Wallach <yehoshuapw@gmail.com>2022-05-08 23:53:22 +0300
committerJF <JF002@users.noreply.github.com>2022-05-10 22:20:02 +0200
commitf56788465d9fae5753213543f5383d9b1747844c (patch)
tree7eddc29d05338e26f26025352b209299c8b2af82 /docker
parent78267eec400859221cd00ed432024b0e223e2948 (diff)
docker: bump ubuntu to 20.04 and node to 18
Diffstat (limited to 'docker')
-rw-r--r--docker/Dockerfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index a1f48848..1943177a 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -1,4 +1,4 @@
-FROM ubuntu:18.04
+FROM ubuntu:20.04
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update -qq \
@@ -21,7 +21,8 @@ RUN apt-get update -qq \
python3-dev \
python \
git \
- && curl -sL https://deb.nodesource.com/setup_12.x | bash - \
+ apt-utils \
+ && curl -sL https://deb.nodesource.com/setup_18.x | bash - \
&& apt-get install -y nodejs \
&& rm -rf /var/cache/apt/* /var/lib/apt/lists/*;