Skip to content

Commit

Permalink
changed dockerfile to be more structured
Browse files Browse the repository at this point in the history
  • Loading branch information
romer8 committed May 1, 2024
1 parent e1b52f0 commit 351c4cc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ARG MICRO_TETHYS=true \
#########################
# ADD APPLICATION FILES #
#########################
COPY . ${TETHYS_HOME}
COPY . ${TETHYS_HOME}/apps/ngiab


###############
Expand All @@ -32,7 +32,8 @@ ENV PORTAL_SUPERUSER_PASSWORD=pass
#######################
# INSTALL APPLICATION #
#######################
RUN micromamba install --yes -c conda-forge --file ${TETHYS_HOME}/requirements.txt && \
RUN cd ${TETHYS_HOME}/apps/ngiab && \
micromamba install --yes -c conda-forge --file requirements.txt && \
micromamba clean --all --yes && \
npm install && npm run build && \
tethys install -d -N
Expand Down

0 comments on commit 351c4cc

Please sign in to comment.