Skip to content

Instantly share code, notes, and snippets.

@yspkm
Created May 29, 2023 15:28
Show Gist options
  • Save yspkm/173204d8200466a50b575dbc0fa711db to your computer and use it in GitHub Desktop.
Save yspkm/173204d8200466a50b575dbc0fa711db to your computer and use it in GitHub Desktop.
rocky linux image for test
FROM rockylinux:9.2
WORKDIR /app
RUN dnf update -y && dnf install -y \
python3 \
python3-devel \
gcc \
openssl-devel \
libffi-devel \
redhat-rpm-config \
&& dnf clean all
RUN pip3 install pandas django cassandra-driver pyyaml torch torchvision spark hdfs kafka
COPY . .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment