forked from nextgenhealthcare/connect-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile-jdk
34 lines (27 loc) · 1.2 KB
/
Dockerfile-jdk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
FROM openjdk:11
COPY mysql-apt-config_0.8.15-1_all.deb /tmp/
RUN apt-get clean && apt-get update && apt-get install -y --no-install-recommends locales postgresql-client lsb-release \
&& echo 4 | dpkg -i /tmp/mysql-apt-config_0.8.15-1_all.deb \
&& apt-get update && apt-get install -y mysql-community-client \
&& sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen && locale-gen
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
RUN curl -SL 'https://s3.amazonaws.com/downloads.mirthcorp.com/connect/3.11.0.b2609/mirthconnect-3.11.0.b2609-unix.tar.gz' \
| tar -xzC /opt \
&& mv "/opt/Mirth Connect" /opt/connect
RUN useradd -u 1000 mirth
RUN mkdir -p /opt/connect/appdata && chown -R mirth:mirth /opt/connect/appdata
VOLUME /opt/connect/appdata
VOLUME /opt/connect/custom-extensions
WORKDIR /opt/connect
RUN rm -rf cli-lib manager-lib \
&& rm mirth-cli-launcher.jar mirth-manager-launcher.jar mccommand mcmanager
RUN (cat mcserver.vmoptions /opt/connect/docs/mcservice-java9+.vmoptions ; echo "") > mcserver_base.vmoptions
EXPOSE 8443
COPY entrypoint.sh /
RUN chmod 755 /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]
RUN chown -R mirth:mirth /opt/connect
USER mirth
CMD ["./mcserver"]