kds/Dockerfile.sh
Sergey Yelin 54456772ff
CDS-65: Add missing port to docker configuration (#14)
* CDS-65: Add missing port to docker configuration

* Fix comment
2019-09-04 17:03:03 +03:00

28 lines
1.0 KiB
Bash
Executable File

#!/bin/bash
cat <<EOF
FROM $BASE_IMAGE
MAINTAINER Rustem Shaydullin <ndiezel0@gmail.com>
COPY _build/prod/rel/kds /opt/kds
CMD /opt/kds/bin/kds foreground
EXPOSE 8022 8023
# A bit of magic below to get a proper branch name
# even when the HEAD is detached (Hey Jenkins!
# BRANCH_NAME is available in Jenkins env).
LABEL com.rbkmoney.$SERVICE_NAME.parent=$BASE_IMAGE_NAME \
com.rbkmoney.$SERVICE_NAME.parent_tag=$BASE_IMAGE_TAG \
com.rbkmoney.$SERVICE_NAME.build_img=build \
com.rbkmoney.$SERVICE_NAME.build_img_tag=$BUILD_IMAGE_TAG \
com.rbkmoney.$SERVICE_NAME.commit_id=$(git rev-parse HEAD) \
com.rbkmoney.$SERVICE_NAME.commit_number=$(git rev-list --count HEAD) \
com.rbkmoney.$SERVICE_NAME.branch=$( \
if [ "HEAD" != $(git rev-parse --abbrev-ref HEAD) ]; then \
echo $(git rev-parse --abbrev-ref HEAD); \
elif [ -n "$BRANCH_NAME" ]; then \
echo $BRANCH_NAME; \
else \
echo $(git name-rev --name-only HEAD); \
fi)
WORKDIR /opt/kds
EOF