2016-12-22 15:09:40 +00:00
|
|
|
#!/bin/bash
|
|
|
|
cat <<EOF
|
|
|
|
FROM $BASE_IMAGE
|
|
|
|
MAINTAINER Ildar Galeev <i.galeev@rbkmoney.com>
|
|
|
|
COPY dist /usr/share/nginx/html
|
|
|
|
COPY nginx.conf /etc/nginx/vhosts.d/koffing.conf
|
|
|
|
COPY containerpilot.json /etc/containerpilot.json
|
|
|
|
CMD /bin/containerpilot -config file:///etc/containerpilot.json /usr/sbin/nginx -g "daemon off;"
|
2017-01-17 17:37:03 +00:00
|
|
|
EXPOSE 8080
|
2016-12-22 15:09:40 +00:00
|
|
|
LABEL base_image_tag=$BASE_IMAGE_TAG
|
|
|
|
LABEL build_image_tag=$BUILD_IMAGE_TAG
|
|
|
|
# A bit of magic to get a proper branch name
|
|
|
|
# even when the HEAD is detached (Hey Jenkins!
|
|
|
|
# BRANCH_NAME is available in Jenkins env).
|
|
|
|
LABEL 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)
|
|
|
|
LABEL commit=$(git rev-parse HEAD)
|
|
|
|
LABEL commit_number=$(git rev-list --count HEAD)
|
|
|
|
EOF
|