Compare commits

..

2 Commits

Author SHA1 Message Date
wh0crypt 16e1740536 fix: fix compiler paths 2026-06-25 23:50:51 +01:00
wh0crypt 47946bd1dc feat: add handlers to dockerfile 2026-06-25 23:50:38 +01:00
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -39,5 +39,6 @@ WORKDIR /app
# Import only compiled binary and data folder # Import only compiled binary and data folder
COPY --from=builder /build/havoc-ts /app/havoc-ts COPY --from=builder /build/havoc-ts /app/havoc-ts
COPY --from=builder /build/data /app/data COPY --from=builder /build/data /app/data
COPY --from=builder /build/teamserver/pkg/handlers /app/teamserver/pkg/handlers
EXPOSE 40056 EXPOSE 40056
+2 -2
View File
@@ -3,8 +3,8 @@ Teamserver {
Port = 40056 Port = 40056
Build { Build {
Compiler64 = "data/x86_64-w64-mingw32-cross/bin/x86_64-w64-mingw32-gcc" Compiler64 = "/usr/bin/x86_64-w64-mingw32-gcc"
Compiler86 = "data/i686-w64-mingw32-cross/bin/i686-w64-mingw32-gcc" Compiler86 = "/usr/bin/i686-w64-mingw32-gcc"
Nasm = "/usr/bin/nasm" Nasm = "/usr/bin/nasm"
} }
} }