From 3433305ac4da8399042751cfc28de928067f7166 Mon Sep 17 00:00:00 2001 From: romer8 Date: Tue, 30 Apr 2024 22:03:59 -0600 Subject: [PATCH] fix position of && in dockerfile --- Dockerfile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8db5696..ff70a6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,14 +23,14 @@ ENV ENABLE_OPEN_PORTAL=True ENV PORTAL_SUPERUSER_NAME=admin ENV PORTAL_SUPERUSER_PASSWORD=pass -############# -# ADD FILES # -############# -RUN micromamba install --yes -c conda-forge --file requirements.txt \ - && micromamba clean --all --yes \ - && npm install && npm run build \ - && tethys install -d -N \ - && mv salt /srv/salt/ +####################################### +# INSTALL EXTENSIONS and APPLICATIONS # +####################################### +RUN micromamba install --yes -c conda-forge --file requirements.txt && \ + micromamba clean --all --yes && \ + npm install && npm run build && \ + tethys install -d -N && \ + mv salt /srv/salt/ ######### # PORTS #