0bae56a0 by Adam Heath

Set an *exact* version for the base docker image, to force everyone to

build the same.
1 parent ef84f188
# syntax=docker/dockerfile:1.4
# Builds a minimal docker image with openjdk and moqui with various volumes for configuration and persisted data outside the container
# NOTE: add components, build and if needed load data before building a docker image with this
ARG RUNTIME_IMAGE=eclipse-temurin:11-jdk
ARG RUNTIME_IMAGE=eclipse-temurin:11.0.25_9-jdk-noble
FROM ${RUNTIME_IMAGE} AS moqui-base
RUN true \
......