mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-08 17:28:01 +00:00
48 lines
1.7 KiB
Docker
48 lines
1.7 KiB
Docker
# Defining environment
|
|
ARG APP_ENV=prod
|
|
|
|
FROM openjdk:8-jre-alpine as base
|
|
RUN addgroup -S datahub && adduser -S datahub -G datahub
|
|
RUN apk --no-cache add curl
|
|
|
|
FROM openjdk:8 as prod-build
|
|
ARG ENABLE_EMBER="false"
|
|
RUN apt-get update && apt-get install -y wget \
|
|
&& wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \
|
|
&& apt-get -y install ./google-chrome-stable_current_amd64.deb
|
|
ENV CI=true
|
|
COPY . datahub-src
|
|
RUN cd datahub-src && ./gradlew :datahub-frontend:dist -PenableEmber=${ENABLE_EMBER} \
|
|
&& cp datahub-frontend/build/distributions/datahub-frontend.zip ../datahub-frontend.zip \
|
|
&& cd .. && rm -rf datahub-src && unzip datahub-frontend.zip
|
|
|
|
FROM base as prod-install
|
|
COPY --from=prod-build /datahub-frontend /datahub-frontend/
|
|
RUN chown -R datahub:datahub /datahub-frontend && chmod 755 /datahub-frontend
|
|
|
|
FROM base as dev-install
|
|
# Dummy stage for development. Assumes code is built on your machine and mounted to this image.
|
|
# See this excellent thread https://github.com/docker/cli/issues/1134
|
|
VOLUME [ "/datahub-frontend" ]
|
|
|
|
FROM ${APP_ENV}-install as final
|
|
USER datahub
|
|
|
|
ARG SERVER_PORT=9002
|
|
ENV SERVER_PORT=$SERVER_PORT
|
|
RUN echo $SERVER_PORT
|
|
EXPOSE $SERVER_PORT
|
|
|
|
HEALTHCHECK --start-period=2m --retries=4 CMD curl --fail http://localhost:$SERVER_PORT/admin || exit 1
|
|
|
|
ENV JAVA_OPTS=" \
|
|
-Xms512m \
|
|
-Xmx1024m \
|
|
-Dhttp.port=$SERVER_PORT \
|
|
-Dconfig.file=datahub-frontend/conf/application.conf \
|
|
-Djava.security.auth.login.config=datahub-frontend/conf/jaas.conf \
|
|
-Dlogback.configurationFile=datahub-frontend/conf/logback.xml \
|
|
-Dlogback.debug=true \
|
|
-Dpidfile.path=/dev/null"
|
|
CMD ["datahub-frontend/bin/playBinary"]
|