Skip to content

Commit

Permalink
Fix pandas and other package version compatibility
Browse files Browse the repository at this point in the history
- Updated pyspark version from 3.1.2 to 3.5.3
- Updated influxdb-client version from 1.20.0 to 1.46.0
- Updated jdk version from 8 to 11

ISSUE-ID: AIMLFW-164

Change-Id: Ifc577b1ffd2821d27fa69d2ed4baae631b915068
Signed-off-by: Sungjin Lee <[email protected]>
  • Loading branch information
sodyn99 committed Oct 1, 2024
1 parent de219b4 commit d4113ee
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ RUN apt-get update && apt-get install -y \
python3 && apt-get install -y \
python3-pip

# Install OpenJDK-8 for Spark
# Install OpenJDK-11 for Spark
RUN apt-get update && \
apt-get install openjdk-8-jre openjdk-8-jdk -y && \
apt-get install openjdk-11-jre openjdk-11-jdk -y && \
apt-get clean;

RUN apt-get update && \
apt-get install scala -y && \
apt-get clean;

# Setup JAVA_HOME -- useful for docker commandline
ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64/
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64/
RUN export JAVA_HOME

WORKDIR ${TA_DIR}
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pyspark==3.1.2
pyspark==3.5.3
cassandra-driver==3.25.0
json5==0.9.6
influxdb-client==1.20.0
influxdb-client==1.46.0
pandas==2.2.2
importlib-metadata==4.8.1
lru-dict==1.1.7
Expand Down

0 comments on commit d4113ee

Please sign in to comment.