- Ciscoasa, update py package
- Cowrie, remove build artifact
- Dicompot, harden image
- Dionaea, hardening, update for py3.12
This commit is contained in:
t3chn0m4g3
2024-11-26 11:49:31 +01:00
parent 21a16a6c1c
commit 626b657082
6 changed files with 57 additions and 42 deletions

View File

@ -1,19 +1,19 @@
FROM alpine:3.20 AS builder
#
# Install packages
RUN apk --no-cache -U add build-base \
RUN apk --no-cache add \
build-base \
git \
libffi \
libffi-dev \
openssl \
openssl-dev \
py3-cryptography \
py3-pip \
python3 \
python3-dev && \
#
# Get and install packages
mkdir -p /opt/ && \
mkdir -p /opt/ && \
cd /opt/ && \
git clone https://github.com/t3chn0m4g3/ciscoasa_honeypot && \
cd ciscoasa_honeypot && \