From 159d30bdb9702e6f304c0920a1e1134070e270cc Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Tue, 11 Apr 2023 14:07:17 +0200 Subject: [PATCH] refs #5541 Deploy fix: clone correct zongji branch --- Dockerfile | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 47d6bca..22761e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN apt-get update \ WORKDIR /mylogger COPY package.json package-lock.json ./ RUN npm install --only=prod \ - && git clone https://github.com/juan-ferrer-toribio/zongji.git \ + && git clone --depth 1 --branch fix-143 https://github.com/juan-ferrer-toribio/zongji.git \ && (cd zongji && npm install --only=prod) ARG BUILD_ID=unknown diff --git a/package.json b/package.json index b874e05..ad75de8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mylogger", - "version": "0.1.0", + "version": "0.1.1", "author": "Verdnatura Levante SL", "description": "MySQL and MariaDB logger using binary log", "license": "GPL-3.0",