From b734c7e8ab645290eb76811b1e2ccd29d1d49dcc Mon Sep 17 00:00:00 2001 From: Monique Rio Date: Thu, 13 Jul 2023 14:50:59 -0400 Subject: [PATCH] move apt-transport install to rest of apt install --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 98d9204..db65d60 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,12 +4,10 @@ ARG UNAME=app ARG UID=1000 ARG GID=1000 -RUN apt-get update -yqq && apt-get install -yqq --no-install-recommends \ - apt-transport-https - RUN curl -sL https://deb.nodesource.com/setup_18.x | bash - RUN apt-get update -yqq && apt-get install -yqq --no-install-recommends \ + apt-transport-https \ nodejs \ vim-tiny