Skip to content

Commit

Permalink
Troubleshooting build errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Ladesma committed Jul 29, 2024
1 parent 110c221 commit 806af1d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ unzip \

#Remove the installed version of openssl, and replace it with an up-to-date version
ARG OPENSSL_VERSION="openssl-3.1.6"
RUN apt-get -y remove openssl \
&& cd home \
&& curl -OSL https://s3.amazonaws.com/downloads.mirthcorp.com/openssl/${OPENSSL_VERSION}.tar.gz \
RUN cd home \
&& curl -OSL https://s3.amazonaws.com/downloads.mirthcorp.com/openssl/${OPENSSL_VERSION}.tar.gz \
&& apt-get -y remove openssl \
&& tar -xzvf ${OPENSSL_VERSION}.tar.gz \
&& cd ${OPENSSL_VERSION} \
&& ./config \
Expand All @@ -25,7 +25,7 @@ ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8

RUN curl -SL $ARTIFACT \
RUN curl -SL https://s3.amazonaws.com/downloads.mirthcorp.com/connect/4.5.1.b332/mirthconnect-4.5.1.b332-unix.tar.gz \
| tar -xzC /opt \
&& mv "/opt/Mirth Connect" /opt/connect

Expand Down
6 changes: 3 additions & 3 deletions Dockerfile-jdk
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ unzip \

#Remove the installed version of openssl, and replace it with an up-to-date version
ARG OPENSSL_VERSION="openssl-3.1.6"
RUN apt-get -y remove openssl \
&& cd home \
&& curl -OSL https://s3.amazonaws.com/downloads.mirthcorp.com/openssl/${OPENSSL_VERSION}.tar.gz \
RUN cd home \
&& curl -OSL https://s3.amazonaws.com/downloads.mirthcorp.com/openssl/${OPENSSL_VERSION}.tar.gz \
&& apt-get -y remove openssl \
&& tar -xzvf ${OPENSSL_VERSION}.tar.gz \
&& cd ${OPENSSL_VERSION} \
&& ./config \
Expand Down

0 comments on commit 806af1d

Please sign in to comment.