Skip to content

Commit

Permalink
feat: [#6] add forensic dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
0xlildoudou committed Aug 13, 2023
1 parent ad28264 commit ccd1ae6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions forensic.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Author: The Exegol Project

FROM debian:11-slim

ARG TAG="local"
ARG VERSION="local"
ARG BUILD_DATE="n/a"

LABEL org.exegol.tag="${TAG}"
LABEL org.exegol.version="${VERSION}"
LABEL org.exegol.build_date="${BUILD_DATE}"
LABEL org.exegol.app="Exegol"
LABEL org.exegol.src_repository="https://github.com/ThePorgs/Exegol-images"

COPY sources /root/sources/

WORKDIR /root/sources/install

RUN echo "${TAG}-${VERSION}" > /opt/.exegol_version && \
chmod +x entrypoint.sh && \
./entrypoint.sh package_base && \
./entrypoint.sh package_forensic

WORKDIR /workspace

ENTRYPOINT ["/.exegol/entrypoint.sh"]

0 comments on commit ccd1ae6

Please sign in to comment.