#FROM registry.access.redhat.com/ubi8/python-38 FROM registry.access.redhat.com/ubi8/python-311 USER 0 RUN yum install -y postgresql-devel gcc && \ yum clean all && \ rm -rf /var/cache/yum ENV DJANGO_SETTINGS_MODULE conf.settings.prod ENV PYTHONBUFFERED 1 WORKDIR /app COPY . /app #RUN mkdir -p /app/static/css /app/static/js /app/static/img RUN pip install -U "pip>=24.0.0" && \ pip install -r requirements.txt && \ python manage.py collectstatic --noinput USER 1001 ENTRYPOINT ["/app/docker-entrypoint.sh"]