rebase off official files... mostly

This commit is contained in:
Merith-TK 2025-07-06 17:08:07 +01:00
parent c772f0ca99
commit 9749f2206e
7 changed files with 554 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM eclipse-temurin:17-jammy
RUN apt update && apt-get install -y emacs-nox net-tools netcat vim nmon python3-lxml unzip curl
# Copy the TAK Server release file
COPY takserver-release/ /takserver-release/
COPY scripts/ /opt/scripts/
# Create necessary directories
RUN mkdir -p /opt/tak/data/logs /opt/tak/data/certs
ENTRYPOINT ["/bin/bash", "/opt/scripts/docker_entrypoint.sh"]