This commit is contained in:
t3chn0m4g3 2022-03-05 00:50:47 +00:00
parent 075551d218
commit 02d4d79a60
7 changed files with 19 additions and 16 deletions

View file

@ -1,10 +1,10 @@
FROM alpine:3.15 FROM alpine:3.15
# #
# Include dist # Include dist
ADD dist/ /root/dist/ COPY dist/ /root/dist/
# #
# Install packages # Install packages
RUN apk -U add \ RUN apk --no-cache -U add \
git \ git \
libcap \ libcap \
py3-pip \ py3-pip \
@ -30,6 +30,7 @@ RUN apk -U add \
apk del --purge git \ apk del --purge git \
python3-dev && \ python3-dev && \
rm -rf /root/* && \ rm -rf /root/* && \
rm -rf /opt/adbhoney/.git && \
rm -rf /var/cache/apk/* rm -rf /var/cache/apk/*
# #
# Set workdir and start adbhoney # Set workdir and start adbhoney

View file

@ -1,11 +1,11 @@
FROM alpine:3.15 FROM alpine:3.15
# #
# Include dist # Include dist
ADD dist/ /root/dist/ COPY dist/ /root/dist/
# #
# Setup env and apt # Setup env and apt
RUN apk -U upgrade && \ RUN apk --no-cache -U upgrade && \
apk add build-base \ apk --no-cache add build-base \
git \ git \
libffi \ libffi \
libffi-dev \ libffi-dev \
@ -37,6 +37,7 @@ RUN apk -U upgrade && \
openssl-dev \ openssl-dev \
python3-dev && \ python3-dev && \
rm -rf /root/* && \ rm -rf /root/* && \
rm -rf /opt/ciscoasa_honeypot/.git && \
rm -rf /var/cache/apk/* rm -rf /var/cache/apk/*
# #
# Start ciscoasa # Start ciscoasa

View file

@ -1,7 +1,7 @@
FROM alpine:3.15 FROM alpine:3.15
# #
# Install packages # Install packages
RUN apk -U add \ RUN apk --no-cache -U add \
git \ git \
libcap \ libcap \
openssl \ openssl \
@ -36,6 +36,7 @@ RUN apk -U add \
openssl \ openssl \
python3-dev && \ python3-dev && \
rm -rf /root/* && \ rm -rf /root/* && \
rm -rf /opt/citrixhoneypot/.git && \
rm -rf /var/cache/apk/* rm -rf /var/cache/apk/*
# #
# Set workdir and start citrixhoneypot # Set workdir and start citrixhoneypot

View file

@ -1,11 +1,12 @@
FROM alpine:3.15 FROM alpine:3.15
# #
# Include dist # Include dist
ADD dist/ /root/dist/ COPY dist/ /root/dist/
# #
# Setup apt # Setup apt
RUN apk -U add \ RUN apk --no-cache -U add \
build-base \ build-base \
cython \
file \ file \
git \ git \
libev \ libev \

View file

@ -42,7 +42,6 @@ services:
# Conpot IEC104 service # Conpot IEC104 service
conpot_IEC104: conpot_IEC104:
build: .
container_name: conpot_IEC104 container_name: conpot_IEC104
restart: always restart: always
environment: environment:
@ -65,7 +64,6 @@ services:
# Conpot guardian_ast service # Conpot guardian_ast service
conpot_guardian_ast: conpot_guardian_ast:
build: .
container_name: conpot_guardian_ast container_name: conpot_guardian_ast
restart: always restart: always
environment: environment:
@ -87,7 +85,6 @@ services:
# Conpot ipmi # Conpot ipmi
conpot_ipmi: conpot_ipmi:
build: .
container_name: conpot_ipmi container_name: conpot_ipmi
restart: always restart: always
environment: environment:
@ -109,7 +106,6 @@ services:
# Conpot kamstrup_382 # Conpot kamstrup_382
conpot_kamstrup_382: conpot_kamstrup_382:
build: .
container_name: conpot_kamstrup_382 container_name: conpot_kamstrup_382
restart: always restart: always
environment: environment:

View file

@ -1,10 +1,10 @@
FROM alpine:3.14 FROM alpine:3.15
# #
# Include dist # Include dist
ADD dist/ /root/dist/ COPY dist/ /root/dist/
# #
# Get and install dependencies & packages # Get and install dependencies & packages
RUN apk -U add \ RUN apk --no-cache -U add \
bash \ bash \
build-base \ build-base \
git \ git \
@ -15,6 +15,7 @@ RUN apk -U add \
mpfr-dev \ mpfr-dev \
openssl \ openssl \
openssl-dev \ openssl-dev \
py3-mysqlclient \
py3-pip \ py3-pip \
python3 \ python3 \
python3-dev && \ python3-dev && \
@ -60,6 +61,7 @@ RUN apk -U add \
rm -rf /root/* /tmp/* && \ rm -rf /root/* /tmp/* && \
rm -rf /var/cache/apk/* && \ rm -rf /var/cache/apk/* && \
rm -rf /home/cowrie/cowrie/cowrie.pid && \ rm -rf /home/cowrie/cowrie/cowrie.pid && \
rm -rf /home/cowrie/cowrie/.git && \
unset PYTHON_DIR unset PYTHON_DIR
# #
# Start cowrie # Start cowrie

View file

@ -1,7 +1,7 @@
FROM alpine:3.15 FROM alpine:3.15
# #
# Install packages # Install packages
RUN apk -U add \ RUN apk --no-cache -U add \
build-base \ build-base \
git \ git \
libcap \ libcap \
@ -43,6 +43,7 @@ RUN apk -U add \
git \ git \
python3-dev && \ python3-dev && \
rm -rf /root/* && \ rm -rf /root/* && \
rm -rf /opt/ddospot/.git && \
rm -rf /var/cache/apk/* rm -rf /var/cache/apk/*
# #
# Start ddospot # Start ddospot