ramanathan1504 commented on issue #4143:
URL:
https://github.com/apache/logging-log4j2/issues/4143#issuecomment-4683250840
@Zschimmer
hey can you save this in docker file and check? am tested its working
without any compile issue
```Docker
FROM debian:12
# 1. Install exactly what Volkan asked for
RUN apt-get update && apt-get install -y \
openjdk-17-jdk \
maven \
git \
ca-certificates
WORKDIR /app
RUN git clone https://github.com/apache/logging-log4j2.git .
# 2. Use 'mvn' to see if the COMPILER works
CMD ["mvn", "clean", "install", "-DskipTests"]
```
run this docker command and let me know is this work for you
```Shell
docker build -t log4j-debian-clean .
docker run log4j-debian-clean
```
Thanks
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]