Skip to content

Commit

Permalink
fix position of && in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
romer8 committed May 1, 2024
1 parent 275ac70 commit 3433305
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 #
Expand Down

0 comments on commit 3433305

Please sign in to comment.