Added docker support

This commit is contained in:
2025-05-19 22:44:13 +02:00
parent 5ca72cad99
commit 50e6f227a0
5 changed files with 43 additions and 16 deletions
+24
View File
@@ -0,0 +1,24 @@
FROM gcc:latest
RUN apt update && apt install -y cmake
WORKDIR /app
#COPY a.png /app/
#COPY content /app/
#COPY wordlist /app/
#COPY include /app/
#COPY src /app/
#COPY CMakeLists.txt /app/
COPY . /app/
RUN ls -lh .
RUN cmake .
RUN make
EXPOSE 8888
EXPOSE 8889
CMD ["./tarpit", "wordlist/", "content/style.css", "content/images/", "a.png"]