Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated testdata docker base image to bookworm #2636

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion testdata/docker/artifactory/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]
Loading