fix: refs #4409 Asset fixes

This commit is contained in:
Juan Ferrer 2024-04-17 11:57:21 +02:00
parent f508cbeb7c
commit 4f0f778ed0
3 changed files with 7 additions and 8 deletions

View File

@ -22,10 +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 \ && git clone --depth 1 --branch fix-143 https://github.com/juan-ferrer-toribio/zongji.git \
&& (cd zongji && npm install --omit=dev) && (cd zongji && npm install --omit=dev)
COPY config config COPY lib \
COPY queues queues config \
COPY lib lib queues \
COPY \
LICENSE \ LICENSE \
README.md \ README.md \
consumer.js \ consumer.js \

View File

@ -22,9 +22,8 @@ RUN npm install --omit=dev --no-audit --prefer-offline \
&& git clone --depth 1 --branch fix-143 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 --omit=dev) && (cd zongji && npm install --omit=dev)
COPY config config COPY config \
COPY queues queues queues \
COPY \
LICENSE \ LICENSE \
README.md \ README.md \
mycdc.js \ mycdc.js \

View File

@ -1,3 +1,4 @@
DROP TABLE IF EXISTS `util`.`binlogQueue`; DROP TABLE IF EXISTS `util`.`binlogQueue`;
DROP USER 'zongji'@'%'; DROP USER IF EXISTS 'mycdc-producer'@'%';
DROP USER IF EXISTS 'mycdc-consumer'@'%';