1
0
mirror of https://github.com/openshift/source-to-image.git synced 2026-02-05 12:44:54 +01:00
Files
source-to-image/images/release/Dockerfile
red-hat-konflux[bot] f43b0c4df9 chore(deps): update registry.redhat.io/ubi9/go-toolset docker tag to v1.22.9
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
2024-12-23 08:05:17 +00:00

17 lines
464 B
Docker

#
# This is the release image for building source-to-image.
#
# The standard name for this image is openshift/sti-release
#
FROM registry.redhat.io/ubi9/go-toolset:1.22.9 AS builder
USER root
ENV S2I_VERSION_FILE=/opt/app-root/src/source-to-image/sti-version-defs
RUN mkdir -p /opt/app-root/src/source-to-image
WORKDIR /opt/app-root/src/source-to-image
VOLUME ["/opt/app-root/src/source-to-image"]
# Expect source to be mounted in
CMD ["./hack/build-cross.sh"]