Skip to content
Snippets Groups Projects
Commit e8d01f17 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Add BombSquad config, CI config, fix Dockerfile.

parent 9956a9ce
No related branches found
No related tags found
No related merge requests found
build_image:
stage: build
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
variables:
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
script:
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"nah\"}}}"
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
- /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG
only:
- tags
FROM python:2.7-stretch
COPY ./bombsquad/ /bombsquad
ENV BS_VERSION 1.4.150
ENV BS_MIRROR https://ant.sr
WORKDIR /bombsquad
CMD /bombsquad/bombsquad_server
EXPOSE 43210/tcp
RUN wget -O BombSquad_Server_Linux_64bit_$BS_VERSION.tar.gz $BS_MIRROR/BombSquad_Server_Linux_64bit_$BS_VERSION.tar.gz \
&& tar xzf BombSquad_Server_Linux_64bit_$BS_VERSION.tar.gz \
&& rm BombSquad_Server_Linux_64bit_$BS_VERSION.tar.gz
COPY ./config.py /bombsquad/BombSquad_Server_Linux_64bit_$BS_VERSION/config.py
COPY ./bsTeamGame.py /bombsquad/BombSquad_Server_Linux_64bit_$BS_VERSION/data/scripts/bsTeamGame.py
COPY ./bsGame.py /bombsquad/BombSquad_Server_Linux_64bit_$BS_VERSION/data/scripts/bsGame.py
COPY ./bsBomb.py /bombsquad/BombSquad_Server_Linux_64bit_$BS_VERSION/data/scripts/bsBomb.py
COPY ./bsSpaz.py /bombsquad/BombSquad_Server_Linux_64bit_$BS_VERSION/data/scripts/bsSpaz.py
CMD /bombsquad/BombSquad_Server_Linux_64bit_$BS_VERSION/bombsquad_server
EXPOSE 43212/udp
config['partyName'] = os.getenv('BS_SERVER_NAME', 'Boomsicle')
config['maxPartySize'] = int(os.getenv('BS_MAX_CONNECTIONS', 32))
config['Free-for-All Max Players'] = int(os.getenv('BS_FFA_MAX_PLAYERS', 32))
config['port'] = int(os.getenv('BS_PORT', 43210))
config['partyIsPublic'] = bool(os.getenv('BS_PUBLIC', True))
config['language'] = os.getenv('BS_LANGUAGE', 'English')
config['sessionType'] = os.getenv('BS_SESSIONTYPE', 'ffa')
config['playlistCode'] = os.getenv('BS_PLAYLIST', None)
config['playlistShuffle'] = bool(os.getenv('BS_SHUFFLE', True))
config['autoBalanceTeams'] = bool(os.getenv('BS_BALANCETEAMS', True))
config['enableTelnet'] = bool(os.getenv('BS_TELNET', False))
config['telnetPort'] = int(os.getenv('BS_TELNETPORT', 43250))
config['telnetPassword'] = os.getenv('BS_TELNETPW', 'changeme')
config['teamsSeriesLength'] = int(os.getenv('BS_SERIESLENGTH', 7))
config['ffaSeriesScoreToWin'] = int(os.getenv('BS_FFASCORE', 69))
config['statsURL'] = os.getenv('BS_STATSURL', '')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment