-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
36 lines (30 loc) · 773 Bytes
/
Dockerfile
File metadata and controls
36 lines (30 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
FROM debian:bookworm-slim
LABEL maintainer="kiseru.io"
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y --no-install-recommends \
httpie \
curl \
nmap \
wget \
procps \
lsof \
python3 \
python3-pip \
netcat-openbsd \
jq \
telnet \
traceroute \
net-tools \
iputils-ping \
dnsutils \
ca-certificates \
&& pip3 install --no-cache-dir --upgrade --break-system-packages setuptools sslyze \
&& curl -sL https://github.com/trimstray/htrace.sh/archive/refs/tags/v1.0.7.tar.gz | tar xz \
&& ./htrace.sh-1.0.7/setup.sh install \
&& rm -rf /var/lib/apt/lists/*
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
EXPOSE 80
CMD ["/entrypoint.sh"]