Finish work on new builder, tweaking

This commit is contained in:
t3chn0m4g3
2024-09-11 10:42:17 +00:00
parent 4f3edb61b3
commit 29ad2a507d
41 changed files with 307 additions and 235 deletions

View File

@ -3,9 +3,8 @@ FROM alpine:3.19
# Include dist
COPY dist/ /root/dist/
#
# Setup env and apt
RUN apk --no-cache -U upgrade && \
apk --no-cache add build-base \
# Install packages
RUN apk --no-cache -U add build-base \
git \
libffi \
libffi-dev \
@ -37,9 +36,9 @@ RUN apk --no-cache -U upgrade && \
libffi-dev \
openssl-dev \
python3-dev && \
rm -rf /root/* && \
rm -rf /opt/ciscoasa_honeypot/.git && \
rm -rf /var/cache/apk/*
rm -rf /root/* \
/opt/ciscoasa_honeypot/.git \
/var/cache/apk/*
#
# Start ciscoasa
STOPSIGNAL SIGINT