mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-20 06:02:24 +00:00
tweaking
This commit is contained in:
parent
075551d218
commit
02d4d79a60
7 changed files with 19 additions and 16 deletions
|
@ -1,10 +1,10 @@
|
|||
FROM alpine:3.15
|
||||
#
|
||||
# Include dist
|
||||
ADD dist/ /root/dist/
|
||||
COPY dist/ /root/dist/
|
||||
#
|
||||
# Install packages
|
||||
RUN apk -U add \
|
||||
RUN apk --no-cache -U add \
|
||||
git \
|
||||
libcap \
|
||||
py3-pip \
|
||||
|
@ -30,6 +30,7 @@ RUN apk -U add \
|
|||
apk del --purge git \
|
||||
python3-dev && \
|
||||
rm -rf /root/* && \
|
||||
rm -rf /opt/adbhoney/.git && \
|
||||
rm -rf /var/cache/apk/*
|
||||
#
|
||||
# Set workdir and start adbhoney
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
FROM alpine:3.15
|
||||
#
|
||||
# Include dist
|
||||
ADD dist/ /root/dist/
|
||||
COPY dist/ /root/dist/
|
||||
#
|
||||
# Setup env and apt
|
||||
RUN apk -U upgrade && \
|
||||
apk add build-base \
|
||||
RUN apk --no-cache -U upgrade && \
|
||||
apk --no-cache add build-base \
|
||||
git \
|
||||
libffi \
|
||||
libffi-dev \
|
||||
|
@ -37,6 +37,7 @@ RUN apk -U upgrade && \
|
|||
openssl-dev \
|
||||
python3-dev && \
|
||||
rm -rf /root/* && \
|
||||
rm -rf /opt/ciscoasa_honeypot/.git && \
|
||||
rm -rf /var/cache/apk/*
|
||||
#
|
||||
# Start ciscoasa
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
FROM alpine:3.15
|
||||
#
|
||||
# Install packages
|
||||
RUN apk -U add \
|
||||
RUN apk --no-cache -U add \
|
||||
git \
|
||||
libcap \
|
||||
openssl \
|
||||
|
@ -36,6 +36,7 @@ RUN apk -U add \
|
|||
openssl \
|
||||
python3-dev && \
|
||||
rm -rf /root/* && \
|
||||
rm -rf /opt/citrixhoneypot/.git && \
|
||||
rm -rf /var/cache/apk/*
|
||||
#
|
||||
# Set workdir and start citrixhoneypot
|
||||
|
|
|
@ -1,11 +1,12 @@
|
|||
FROM alpine:3.15
|
||||
#
|
||||
# Include dist
|
||||
ADD dist/ /root/dist/
|
||||
COPY dist/ /root/dist/
|
||||
#
|
||||
# Setup apt
|
||||
RUN apk -U add \
|
||||
RUN apk --no-cache -U add \
|
||||
build-base \
|
||||
cython \
|
||||
file \
|
||||
git \
|
||||
libev \
|
||||
|
|
|
@ -42,7 +42,6 @@ services:
|
|||
|
||||
# Conpot IEC104 service
|
||||
conpot_IEC104:
|
||||
build: .
|
||||
container_name: conpot_IEC104
|
||||
restart: always
|
||||
environment:
|
||||
|
@ -65,7 +64,6 @@ services:
|
|||
|
||||
# Conpot guardian_ast service
|
||||
conpot_guardian_ast:
|
||||
build: .
|
||||
container_name: conpot_guardian_ast
|
||||
restart: always
|
||||
environment:
|
||||
|
@ -87,7 +85,6 @@ services:
|
|||
|
||||
# Conpot ipmi
|
||||
conpot_ipmi:
|
||||
build: .
|
||||
container_name: conpot_ipmi
|
||||
restart: always
|
||||
environment:
|
||||
|
@ -109,7 +106,6 @@ services:
|
|||
|
||||
# Conpot kamstrup_382
|
||||
conpot_kamstrup_382:
|
||||
build: .
|
||||
container_name: conpot_kamstrup_382
|
||||
restart: always
|
||||
environment:
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
FROM alpine:3.14
|
||||
FROM alpine:3.15
|
||||
#
|
||||
# Include dist
|
||||
ADD dist/ /root/dist/
|
||||
COPY dist/ /root/dist/
|
||||
#
|
||||
# Get and install dependencies & packages
|
||||
RUN apk -U add \
|
||||
RUN apk --no-cache -U add \
|
||||
bash \
|
||||
build-base \
|
||||
git \
|
||||
|
@ -15,6 +15,7 @@ RUN apk -U add \
|
|||
mpfr-dev \
|
||||
openssl \
|
||||
openssl-dev \
|
||||
py3-mysqlclient \
|
||||
py3-pip \
|
||||
python3 \
|
||||
python3-dev && \
|
||||
|
@ -60,6 +61,7 @@ RUN apk -U add \
|
|||
rm -rf /root/* /tmp/* && \
|
||||
rm -rf /var/cache/apk/* && \
|
||||
rm -rf /home/cowrie/cowrie/cowrie.pid && \
|
||||
rm -rf /home/cowrie/cowrie/.git && \
|
||||
unset PYTHON_DIR
|
||||
#
|
||||
# Start cowrie
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
FROM alpine:3.15
|
||||
#
|
||||
# Install packages
|
||||
RUN apk -U add \
|
||||
RUN apk --no-cache -U add \
|
||||
build-base \
|
||||
git \
|
||||
libcap \
|
||||
|
@ -43,6 +43,7 @@ RUN apk -U add \
|
|||
git \
|
||||
python3-dev && \
|
||||
rm -rf /root/* && \
|
||||
rm -rf /opt/ddospot/.git && \
|
||||
rm -rf /var/cache/apk/*
|
||||
#
|
||||
# Start ddospot
|
||||
|
|
Loading…
Reference in a new issue