From ba2ad3bbd2ac084adddbabad767ab4940f33172c Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Tue, 7 May 2024 08:31:53 +0200 Subject: [PATCH] fix: refs #4409 Dockerfile COPY dir fix --- assets/Dockerfile.consumer | 8 ++++---- assets/Dockerfile.producer | 6 +++--- package.json | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/assets/Dockerfile.consumer b/assets/Dockerfile.consumer index a741f83..9b5dd4f 100644 --- a/assets/Dockerfile.consumer +++ b/assets/Dockerfile.consumer @@ -22,10 +22,10 @@ RUN npm install --omit=dev --no-audit --prefer-offline \ && git clone --depth 1 --branch fix-143 https://github.com/juan-ferrer-toribio/zongji.git \ && (cd zongji && npm install --omit=dev) -COPY lib \ - config \ - queues \ - LICENSE \ +COPY lib lib +COPY config config +COPY queues queues +COPY LICENSE \ README.md \ consumer.js \ ./ diff --git a/assets/Dockerfile.producer b/assets/Dockerfile.producer index cb69bea..6abc7d0 100644 --- a/assets/Dockerfile.producer +++ b/assets/Dockerfile.producer @@ -22,9 +22,9 @@ RUN npm install --omit=dev --no-audit --prefer-offline \ && git clone --depth 1 --branch fix-143 https://github.com/juan-ferrer-toribio/zongji.git \ && (cd zongji && npm install --omit=dev) -COPY config \ - queues \ - LICENSE \ +COPY config config +COPY queues queues +COPY LICENSE \ README.md \ mycdc.js \ index.js \ diff --git a/package.json b/package.json index cd11a22..791a6f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mycdc", - "version": "0.0.10", + "version": "0.0.11", "author": "Verdnatura Levante SL", "description": "Asynchronous DB calculations reading the binary log", "license": "GPL-3.0",