Skip to content

Commit e4d6a70

Browse files
author
Ron T
committed
prepare for release version-0.9.0
1 parent 77aabc7 commit e4d6a70

3 files changed

Lines changed: 13 additions & 6 deletions

File tree

CHANGES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# SCIMMA Server Container Changes
2-
## May 29, 2025
2+
## Jun 11, 2025
33
Version 0.9.0
44

55
1. Update to hop-client version 0.11.1
6+
2. Update to scimma/base:0.6.0
67

78
## May 25, 2023
89
Version 0.8.1

Dockerfile.client

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
1-
FROM scimma/base:0.5.2
1+
FROM scimma/base:0.6.0
22
RUN cd /usr/local/src && \
33
git clone https://github.com/confluentinc/confluent-kafka-python.git && \
44
cd confluent-kafka-python && \
55
git checkout v1.8.2 && \
66
python3 setup.py build && \
7-
python3 setup.py install
7+
python3 setup.py install && cd && rm -rf /usr/local/src/confluent-kafka-python
8+
RUN cd /usr/local/src && \
9+
git clone https://github.com/confluentinc/confluent-kafka-python.git && \
10+
cd confluent-kafka-python && \
11+
git checkout v1.8.2 && \
12+
python3.12 setup.py build && \
13+
python3.12 setup.py install && cd && rm -rf /usr/local/src/confluent-kafka-python
814
RUN mkdir -p /root/.config && ln -s /root/shared/kafkacat.conf /root/.config/kafkacat.conf
915
RUN mkdir -p /root/.config/hop && ln -s /root/shared/config.toml /root/.config/hop/auth.toml
10-
RUN pip3 install -U pip
11-
RUN pip3 install -U hop-client==0.11.1
16+
RUN pip3 install -U pip && pip3 install -U hop-client==0.11.1
17+
RUN dnf install -y python3.12-pip.noarch && pip3.12 install -U pip && pip3.12 install -U hop-client==0.11.1
1218
RUN mkdir -p /root/test_data
1319
COPY test/data/example.gcn3 /root/test_data/example.gcn3
1420
ENV XDG_CONFIG_PATH /root

Dockerfile.server

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM scimma/base:0.5.2
1+
FROM scimma/base:0.6.0
22
RUN dnf install -y iproute
33
COPY etc/zookeeper/zoo.cfg /opt/apache-zookeeper/conf/zookeeper.properties
44
COPY etc/kafka/server.properties.auth /etc/kafka/server.properties.auth

0 commit comments

Comments
 (0)