Created
May 29, 2023 15:28
-
-
Save yspkm/173204d8200466a50b575dbc0fa711db to your computer and use it in GitHub Desktop.
rocky linux image for test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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