From 7869c1179a2eb34a9c87ff7405ce003abe5447f0 Mon Sep 17 00:00:00 2001 From: Dan Callaghan Date: May 02 2018 04:16:27 +0000 Subject: Dockerfile: use gunicorn-3 executable name The incorrect python3-gunicorn executable name remains for now, but we need to use gunicorn-3 on Fedora 29+. See: https://bugzilla.redhat.com/show_bug.cgi?id=1567198 --- diff --git a/Dockerfile b/Dockerfile index 1b2d34e..d513d53 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,4 +20,4 @@ RUN dnf -y install \ USER 1001 EXPOSE 8080 -ENTRYPOINT python3-gunicorn --bind 0.0.0.0:8080 --access-logfile=- --enable-stdio-inheritance waiverdb.wsgi:app +ENTRYPOINT gunicorn-3 --bind 0.0.0.0:8080 --access-logfile=- --enable-stdio-inheritance waiverdb.wsgi:app