summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-04-10 17:43:39 +0300
committerAndrew Dolgov <[email protected]>2023-04-10 17:43:39 +0300
commit06aabdf60b61fc357c4e60d541e2247f678a96bf (patch)
tree1e4f3fdad1adc026af3a1368c0db465e6b83c0c1
parent4e17fac8b756b48beaf530dffc528d6462a11ee6 (diff)
create version_static.txt on build
-rw-r--r--.docker/app/Dockerfile6
1 files changed, 6 insertions, 0 deletions
diff --git a/.docker/app/Dockerfile b/.docker/app/Dockerfile
index 63f43dc60..8b29bbbc9 100644
--- a/.docker/app/Dockerfile
+++ b/.docker/app/Dockerfile
@@ -4,6 +4,10 @@ EXPOSE 9000/tcp
ENV SCRIPT_ROOT=/opt/tt-rss
ENV SRC_DIR=/src/tt-rss/
+ARG BUILD_TIMESTAMP
+ARG CI_COMMIT_BRANCH
+ARG CI_COMMIT_SHORT_SHA
+
RUN apk add --no-cache dcron php81 php81-fpm php81-phar php81-sockets \
php81-pdo php81-gd php81-pgsql php81-pdo_pgsql php81-xmlwriter \
php81-mbstring php81-intl php81-xml php81-curl php81-simplexml \
@@ -29,6 +33,8 @@ ADD config.docker.php ${SCRIPT_ROOT}
COPY --from=app-src . ${SRC_DIR}
+RUN [ ! -z ${BUILD_TIMESTAMP} ] && echo ${BUILD_TIMESTAMP}-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHORT_SHA} | tee ${SRC_DIR}/version_static.txt
+
ARG ORIGIN_REPO_XACCEL=https://git.tt-rss.org/fox/ttrss-nginx-xaccel.git
RUN git clone --depth=1 ${ORIGIN_REPO_XACCEL} ${SRC_DIR}/plugins.local/nginx_xaccel