31 lines
796 B
Docker
31 lines
796 B
Docker
#FROM debian
|
|
FROM consol/debian-xfce-vnc:latest
|
|
ENV REFRESHED_AT 2025_06_03
|
|
|
|
# Switch to root user to install additional software
|
|
USER 0
|
|
|
|
RUN apt update
|
|
RUN apt install -yq libssl-dev \
|
|
curl \
|
|
openssl \
|
|
ca-certificates \
|
|
fontconfig \
|
|
fonts-dejavu \
|
|
libxext6 \
|
|
libxrender1 \
|
|
libxtst6 \
|
|
gnupg\
|
|
supervisor
|
|
|
|
RUN mkdir -p /usr/share/man/man1 && \
|
|
curl -fsSL https://packages.adoptium.net/artifactory/api/gpg/key/public | gpg --dearmor -o /etc/apt/trusted.gpg.d/adoptium.gpg && \
|
|
echo "deb https://packages.adoptium.net/artifactory/deb bullseye main" > /etc/apt/sources.list.d/adoptium.list && \
|
|
apt-get update && \
|
|
apt-get install -y temurin-21-jdk
|
|
RUN java -version
|
|
|
|
RUN curl https://portswigger.net/burp/releases/download \
|
|
-o burpsuite_community.jar
|
|
|
|
USER 1000 |