We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6b4f716 + 47833fe commit 0639591Copy full SHA for 0639591
dockerfiles/Dockerfile.base
@@ -1,4 +1,3 @@
1
-FROM registry.access.redhat.com/ubi8/ubi
2
-RUN yum install -y python3.8 python3-devel gcc-c++ && yum clean all
3
-COPY requirements.txt requirements.txt
4
-RUN python3.8 -m pip install -r requirements.txt
+FROM python:3.8-slim
+COPY requirements.txt .
+RUN pip install --no-cache-dir -r requirements.txt
0 commit comments