From e8f97fda9ddff256aae3dd52c69fd8e50b39335a Mon Sep 17 00:00:00 2001 From: itayporezky <57370673+itayporezky@users.noreply.github.com> Date: Sun, 4 Aug 2024 22:31:21 +0300 Subject: [PATCH] Updated testdata docker base image to bookworm --- testdata/docker/artifactory/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/testdata/docker/artifactory/Dockerfile b/testdata/docker/artifactory/Dockerfile index eb1508233..90f394d54 100644 --- a/testdata/docker/artifactory/Dockerfile +++ b/testdata/docker/artifactory/Dockerfile @@ -1,11 +1,14 @@ # Wrap jfrog-testing-infra in a contaner for the docker tests. # We run a container with Artifactory since docker tests may need to spin up a contaner to build images inside. +FROM golang:bookworm -FROM golang:buster RUN go install github.com/jfrog/jfrog-testing-infra/local-rt-setup@latest + ENV JFROG_HOME=/jfrog_home WORKDIR /jfrog_home + EXPOSE 8082 EXPOSE 8081 + # Temporarily use version 7.84.17 due to an issue with the automatic token generation mechanism in 7.90 CMD ["sh","-c","local-rt-setup --rt-version 7.84.17; sleep infinity"]