moved Dockerfile to config/docker

This commit is contained in:
Loup-Garou911XD 2024-05-19 01:48:03 +05:30
parent 569ab27e85
commit 40096eaeb7
2 changed files with 2 additions and 1 deletions

View File

@ -85,6 +85,7 @@ WORKDIR /home/ubuntu/ballistica
# Expose the necessary port
EXPOSE 43210/udp
EXPOSE 43210/tcp
# Set the default command to run the application
CMD [ "./ballisticakit_server" ]

View File

@ -685,7 +685,7 @@ def docker_build() -> None:
import shutil
# todo: add option to toggle between prefab and cmake
shutil.copy('src/assets/docker/Dockerfile', '.')
shutil.copy('config/docker/Dockerfile', '.')
from batools import version
version_num, build_num = version.get_current_version()