| # |
| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| |
| FROM eclipse-temurin:25 AS jre-build |
| |
| ARG JRE_MODULES |
| |
| RUN $JAVA_HOME/bin/jlink \ |
| --add-modules ${JRE_MODULES} \ |
| --strip-debug \ |
| --no-man-pages \ |
| --no-header-files \ |
| --compress=2 \ |
| --output /javaruntime |
| |
| # Same base image as eclipse-temurin |
| FROM ubuntu:22.04 |
| |
| ARG DOTNET_VERSION=8.0 |
| ARG DOTNET_PACKAGE_NAME=dotnet-runtime |
| |
| ENV JAVA_HOME=/opt/java/openjdk |
| ENV PATH="${JAVA_HOME}/bin:${PATH}" |
| COPY --from=jre-build /javaruntime $JAVA_HOME |
| |
| # Install .NET Runtime |
| RUN apt-get update && \ |
| apt-get install -y --no-install-recommends ${DOTNET_PACKAGE_NAME}-${DOTNET_VERSION} && \ |
| apt-get clean && \ |
| rm -rf /var/lib/apt/lists/* |
| |
| # Set default memory and GC configuration |
| ENV JVM_MAX_MEM="16g" |
| ENV JVM_MIN_MEM="16g" |
| |
| ENV JVM_GC="G1GC" |
| ENV JVM_G1HeapRegionSize="32M" |
| |
| ENV IGNITE3_EXTRA_JVM_ARGS="" |
| |
| # Copy and setup DB app |
| ENV IGNITE_HOME=/opt/ignite |
| |
| ENV LIBS_DIR=$IGNITE_HOME/lib |
| |
| ENV IGNITE_NODE_NAME=defaultNode |
| ENV IGNITE_WORK_DIR=$IGNITE_HOME/work |
| ENV IGNITE_CONFIG_PATH=$IGNITE_HOME/etc/ignite-config.conf |
| |
| COPY dist/db $IGNITE_HOME |
| |
| EXPOSE 3344 10300 10800 |
| |
| # Copy CLI app |
| ENV IGNITE_CLI_HOME=/opt/ignite3cli |
| ENV IGNITE_CLI_WORK_DIR=$IGNITE_WORK_DIR/ignite3cli |
| |
| COPY dist/cli $IGNITE_CLI_HOME |
| |
| # Copy entrypoint script |
| COPY dist/docker-entrypoint.sh /usr/local/bin/ |
| |
| # Make sure the locale is UTF-8 so that CLI prints tables correctly |
| ENV LANG=C.UTF-8 |
| ENV LC_ALL=C.UTF-8 |
| |
| ENTRYPOINT ["docker-entrypoint.sh"] |