0bae56a0 by Adam Heath

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

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