mycdc/assets/Dockerfile.producer

34 lines
777 B
Docker
Raw Normal View History

FROM debian:bookworm-slim
ARG DEBIAN_FRONTEND=noninteractive
# NodeJs
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
curl \
ca-certificates \
gnupg2 \
2024-04-04 15:43:47 +00:00
git \
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y --no-install-recommends nodejs \
&& rm -rf /var/lib/apt/lists/*
# Producer
WORKDIR /mycdc
COPY package.json package-lock.json ./
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 config
COPY queues queues
COPY LICENSE \
README.md \
mycdc.js \
index.js \
./
CMD ["node", "index.js"]