forked from ThePorgs/Exegol-images
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad28264
commit ccd1ae6
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |