Skip to content

Commit

Permalink
Update NONMEM download method
Browse files Browse the repository at this point in the history
  • Loading branch information
billdenney committed Sep 18, 2019
1 parent a8cfb17 commit 5037a5c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions NONMEM_7.4.3-nmqual_8.4.0-ifort.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# nmqual, NONMEM, and PsN) by pre-downloading required zip
# files and then serving them from a local directory:
#
# wget https://nonmem.iconplc.com/nonmem743/NONMEM7.4.3.zip
# wget --auth-no-challenge https://nonmem.iconplc.com/nonmem743/NONMEM7.4.3.zip
# wget https://bitbucket.org/metrumrg/nmqual/downloads/nmqual-8.4.0.zip
# python -m SimpleHTTPServer
#
Expand Down Expand Up @@ -112,7 +112,7 @@ ENV NMLICENSEPATH=/mnt/nonmem.lic

RUN cd /mnt \
&& echo "Get and uncompress the files for installation" \
&& wget -nv --no-check-certificate ${NONMEMURL} \
&& wget -nv --no-check-certificate --auth-no-challenge ${NONMEMURL} \
&& unzip -P ${NONMEMZIPPASS} NONMEM${NONMEM_VERSION}.zip \
&& wget -nv --no-check-certificate ${NMQUALURL} \
&& unzip nmqual-${NMQUAL_VERSION}.zip \
Expand Down
4 changes: 2 additions & 2 deletions NONMEM_7.4.3-nmqual_8.4.0.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# nmqual, NONMEM, and PsN) by pre-downloading required zip
# files and then serving them from a local directory:
#
# wget https://nonmem.iconplc.com/nonmem743/NONMEM7.4.3.zip
# wget --auth-no-challenge https://nonmem.iconplc.com/nonmem743/NONMEM7.4.3.zip
# wget https://bitbucket.org/metrumrg/nmqual/downloads/nmqual-8.4.0.zip
# python -m SimpleHTTPServer
#
Expand Down Expand Up @@ -113,7 +113,7 @@ ENV NMLICENSEPATH=/mnt/nonmem.lic

RUN cd /mnt \
&& echo "Get and uncompress the files for installation" \
&& wget -nv --no-check-certificate ${NONMEMURL} \
&& wget -nv --no-check-certificate --auth-no-challenge ${NONMEMURL} \
&& unzip -P ${NONMEMZIPPASS} NONMEM${NONMEM_VERSION}.zip \
&& wget -nv --no-check-certificate ${NMQUALURL} \
&& unzip nmqual-${NMQUAL_VERSION}.zip \
Expand Down
4 changes: 2 additions & 2 deletions NONMEM_7.4.3.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# nmqual, NONMEM, and PsN) by pre-downloading required zip
# files and then serving them from a local directory:
#
# wget https://nonmem.iconplc.com/nonmem743/NONMEM7.4.3.zip
# wget --auth-no-challenge https://nonmem.iconplc.com/nonmem743/NONMEM7.4.3.zip
# wget https://bitbucket.org/metrumrg/nmqual/downloads/nmqual-8.4.0.zip
# python -m SimpleHTTPServer
#
Expand Down Expand Up @@ -64,7 +64,7 @@ COPY nonmem.lic /opt/NONMEM/nm${NONMEM_VERSION_NO_DOTS}/license/nonmem.lic
## Install NONMEM and then clean out unnecessary files to shrink
## the image
RUN cd /tmp \
&& wget -nv --no-check-certificate ${NONMEMURL} \
&& wget -nv --no-check-certificate --auth-no-challenge ${NONMEMURL} \
&& unzip -P ${NONMEMZIPPASS} NONMEM${NONMEM_VERSION}.zip \
&& cd /tmp/nm${NONMEM_VERSION_NO_DOTS}CD \
&& bash SETUP${NONMEM_MAJOR_VERSION}${NONMEM_MINOR_VERSION} /tmp/nm${NONMEM_VERSION_NO_DOTS}CD \
Expand Down

0 comments on commit 5037a5c

Please sign in to comment.