diff options
author | Matthew Lemon <y@yulqen.org> | 2024-06-03 15:57:10 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-06-03 15:57:10 +0100 |
commit | 8689e047a008a10b6b1018a26da2fe2ee2bd05d4 (patch) | |
tree | a65656cfc205806c0807b18227d5f0df92b86b7e /Dockerfile | |
parent | 6ddfa537c84e65c7f713ff2ffb889fdfd17a50af (diff) | |
parent | 2851046fa6e18069120998781ef5391642920f22 (diff) |
Merge branch 'postgres-migration'
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -4,7 +4,9 @@ FROM registry.access.redhat.com/ubi8/python-38 USER 0 # Install system dependencies -RUN microdnf install -y postgresql-devel gcc +RUN yum install -y postgresql-devel gcc && \ + yum clean all && \ + rm -rf /var/cache/yum WORKDIR /app @@ -21,7 +23,3 @@ RUN mkdir -p /app/static/css /app/static/js /app/static/img # Switch to non-root user USER 1001 - -# Start app -CMD ["gunicorn", "ded.wsgi:application", "--bind", "0.0.0:8000"] - |