fistful-server/Dockerfile.sh

31 lines
1.1 KiB
Bash
Raw Normal View History

2018-06-13 13:43:48 +00:00
#!/bin/bash
cat <<EOF
FROM ${BASE_IMAGE}
MAINTAINER Andrey Mayorov <a.mayorov@rbkmoney.com>
COPY ./_build/prod/rel/${SERVICE_NAME} /opt/${SERVICE_NAME}
2018-07-05 10:57:59 +00:00
CMD /opt/${SERVICE_NAME}/bin/${SERVICE_NAME} foreground
2018-06-13 13:43:48 +00:00
EXPOSE 8022
2018-07-06 13:49:30 +00:00
# wapi
EXPOSE 8080
2018-06-13 13:43:48 +00:00
# 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
EOF