first commit

This commit is contained in:
root
2025-12-05 07:14:11 +00:00
commit 2ed4393eb9
129 changed files with 20524 additions and 0 deletions

14
grob/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM ubuntu@sha256:c35e29c9450151419d9448b0fd75374fec4fff364a27f176fb458d472dfc9e54
RUN useradd -m -u 1001 ctf
COPY docker-entrypoint.sh /
RUN chmod +x /docker-entrypoint.sh
WORKDIR /app
COPY grob .
RUN chmod +x /app/grob
RUN mkdir -p /app/history && chown -R ctf:ctf /app
CMD ["/docker-entrypoint.sh"]