-
Notifications
You must be signed in to change notification settings - Fork 851
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
Restore CI/CD #323
Comments
for now, I wrote my own dockerfile and pushed it to a private ECR to unblock. Not the most elegant but works for now until an official image is pushed FROM openjdk:11 AS builder
RUN mkdir /app && cd /app && \
wget https://github.com/obsidiandynamics/kafdrop/archive/refs/heads/master.zip && \
unzip master.zip && \
cd /app/kafdrop-master && \
./mvnw -DskipTests package assembly:single && \
mkdir /kafdrop && \
cp /app/kafdrop-master/target/kafdrop*tar.gz /kafdrop.tar.gz && \
cp /app/kafdrop-master/target/docker-ready/kafdrop.sh / && \
chmod +x /kafdrop.sh
FROM openjdk:11
COPY --from=builder /kafdrop.tar.gz /
COPY --from=builder /kafdrop.sh /
RUN tar xvf /kafdrop.tar.gz
CMD ["/kafdrop.sh"] |
Thank you @cemeyer2 and @davideicardi for this help. We built the image from related dockerfile that @cemeyer2 shared and it works properly. Security scan is also passed. Much appreciated. |
@davideicardi i tried your approach , however I am noticing that i still get this The log4j jars have been upgraded, so i dont think it should be an issue, but wanted to confirm.
|
@niqbal I think it is a false positive, because we have declared |
I suggest deleting the log4j property and update to Spring Boot 2.6.2 which also increments the spring-boot-starter-log4j2 to version 2.6.2 |
See #324 PR to update spring boot. |
See #325 PR for release action. |
Closed via #325 . Published new docker image 3.28.0-SNAPSHOT |
It looks like Travis CI doesn't work anymore. How we can restore it?
Can we eval to use github actions instead?
It is important to also release the new docker image with Log4J vulnerability fix.
@ekoutanov do you have any suggestion?
The text was updated successfully, but these errors were encountered: